From 576b21b58cced4bb319131114fca3590d58a3f6b Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Wed, 24 May 2006 12:20:57 +0000 Subject: enabled FLEXT_(C)ADDMETHOD as an alias of FLEXT_(C)ADDBANG bugfixes and optimizations, especially for DSP under Max/MSP added thisParent type attribute generation is now determined exclusively by the object class setup (not library as before). avoid trying to send empty message bundles - preprocessor symbol FLEXT_COMPATIBLE - if defined don't implement specialities of either PD or Max/MSP small changes for attribute functions - Max: fixed reported bug (#67), where list elements are distributed over inlets svn path=/trunk/; revision=5113 --- externals/grill/flext/source/flqueue.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'externals/grill/flext/source/flqueue.cpp') diff --git a/externals/grill/flext/source/flqueue.cpp b/externals/grill/flext/source/flqueue.cpp index 13b45c5c..2053c4de 100755 --- a/externals/grill/flext/source/flqueue.cpp +++ b/externals/grill/flext/source/flqueue.cpp @@ -378,11 +378,6 @@ static void Trigger() // qelem_front(qclk); clock_delay(qclk,0); #endif -#elif FLEXT_SYS == FLEXT_SYS_JMAX - #if FLEXT_QMODE == 0 - // this is dangerous because there may be other timers on this object! - fts_timebase_add_call(fts_get_timebase(), (fts_object_t *)thisHdr(), QTick, NULL, 0); - #endif #else #error Not implemented #endif @@ -410,6 +405,7 @@ void flext_base::StartQueue() #endif #elif FLEXT_QMODE == 2 LaunchThread(QWorker,NULL); + // very unelegant... but waiting should be ok, since happens only on loading while(!qustarted) Sleep(0.001); #elif FLEXT_QMODE == 0 && (FLEXT_SYS == FLEXT_SYS_PD || FLEXT_SYS == FLEXT_SYS_MAX) // qclk = (t_qelem *)(qelem_new(NULL,(t_method)QTick)); -- cgit v1.2.1