commit 1bbd8d0024b7fcfc75b33827d324ad4422bd69b4
parent 54f69d4ba6ad7a6d286167300d6c7af003f16d2b
Author: fundamental <[email protected]>
Date: Sun, 21 Jul 2013 14:33:00 -0400
Remove Unused Mutex Method
Diffstat:
2 files changed, 0 insertions(+), 23 deletions(-)
diff --git a/src/Misc/Master.cpp b/src/Misc/Master.cpp
@@ -222,19 +222,6 @@ void Master::defaults()
ShutUp();
}
-bool Master::mutexLock(lockset request)
-{
- switch(request) {
- case MUTEX_TRYLOCK:
- return !pthread_mutex_trylock(&mutex);
- case MUTEX_LOCK:
- return !pthread_mutex_lock(&mutex);
- case MUTEX_UNLOCK:
- return !pthread_mutex_unlock(&mutex);
- }
- return false;
-}
-
/*
* Note On Messages (velocity=0 for NoteOff)
*/
diff --git a/src/Misc/Master.h b/src/Misc/Master.h
@@ -34,10 +34,6 @@
#include "../Params/Controller.h"
-typedef enum {
- MUTEX_TRYLOCK, MUTEX_LOCK, MUTEX_UNLOCK
-} lockset;
-
extern Dump dump;
struct vuData {
@@ -84,12 +80,6 @@ class Master
/**put all data from the *data array to zynaddsubfx parameters (used for VST)*/
void putalldata(char *data, int size);
- //Mutex control
- /**Control the Master's mutex state.
- * @param lockset either trylock, lock, or unlock.
- * @return true when successful false otherwise.*/
- bool mutexLock(lockset request);
-
//Midi IN
void noteOn(char chan, char note, char velocity);
void noteOff(char chan, char note);