diff options
author | Miller Puckette <millerpuckette@users.sourceforge.net> | 2004-11-28 21:20:43 +0000 |
---|---|---|
committer | Miller Puckette <millerpuckette@users.sourceforge.net> | 2004-11-28 21:20:43 +0000 |
commit | a346d52dfffc44999d3f10226642f7baa9c5463b (patch) | |
tree | 6fea81e2fcdc9812a3ee984e378900ee4f8e9fe9 /pd/src/m_sched.c | |
parent | aa82c4290982659a3364eca02573e070418b63e8 (diff) |
unified "array" and "struct array" code. Vast changes to "g_array.c" and
"g_template.c", and many smaller changes to various files. Not yet
well tested.
svn path=/trunk/; revision=2341
Diffstat (limited to 'pd/src/m_sched.c')
-rw-r--r-- | pd/src/m_sched.c | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/pd/src/m_sched.c b/pd/src/m_sched.c index 10c03473..7a82b3eb 100644 --- a/pd/src/m_sched.c +++ b/pd/src/m_sched.c @@ -12,8 +12,6 @@ rates we expect to see: 32000, 44100, 48000, 88200, 96000. */ #define TIMEUNITPERSEC (32.*441000.) - -/* T.Grill - enable PD global thread locking - sys_lock, sys_unlock, sys_trylock functions */ #define THREAD_LOCKING #include "pthread.h" @@ -394,7 +392,6 @@ int m_scheduler( void) ((double)sys_schedblocksize) / sys_dacsr; #ifdef THREAD_LOCKING - /* T.Grill - lock mutex */ sys_lock(); #endif @@ -470,8 +467,7 @@ int m_scheduler( void) sys_reportidle(); #ifdef THREAD_LOCKING - /* T.Grill - enter idle phase -> unlock thread lock */ - sys_unlock(); + sys_unlock(); /* unlock while we idle */ #endif /* call externally installed idle function if any. */ if (!sys_idlehook || !sys_idlehook()) @@ -481,7 +477,6 @@ int m_scheduler( void) sys_microsleep(sys_sleepgrain); } #ifdef THREAD_LOCKING - /* T.Grill - leave idle phase -> lock thread lock */ sys_lock(); #endif @@ -492,7 +487,6 @@ int m_scheduler( void) } #ifdef THREAD_LOCKING - /* T.Grill - done */ sys_unlock(); #endif @@ -501,7 +495,6 @@ int m_scheduler( void) /* ------------ thread locking ------------------- */ -/* added by Thomas Grill */ #ifdef THREAD_LOCKING static pthread_mutex_t sys_mutex = PTHREAD_MUTEX_INITIALIZER; @@ -529,13 +522,6 @@ int sys_trylock(void) {} #endif - -/* ------------ soft quit ------------------- */ -/* added by Thomas Grill - - just set the quit flag for the scheduler loop - this is useful for applications using the PD shared library to signal the scheduler to terminate -*/ - void sys_exit(void) { sys_quit = 1; |