aboutsummaryrefslogtreecommitdiff
path: root/externals
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2004-09-12 04:02:06 +0000
committerThomas Grill <xovo@users.sourceforge.net>2004-09-12 04:02:06 +0000
commitc3ca6a17e6b3a4c08ae222659f4d77df7874b75d (patch)
tree67e9646219d348db6e01d4dbc8cc82de3d5fbf3f /externals
parent1fa5251f469a756d09f7f7c98113a69186688206 (diff)
""
svn path=/trunk/; revision=2025
Diffstat (limited to 'externals')
-rwxr-xr-xexternals/grill/flext/source/flqueue.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/externals/grill/flext/source/flqueue.cpp b/externals/grill/flext/source/flqueue.cpp
index 4165e968..10943030 100755
--- a/externals/grill/flext/source/flqueue.cpp
+++ b/externals/grill/flext/source/flqueue.cpp
@@ -34,7 +34,7 @@ class qmsg
public:
void Set(flext_base *t,int o,const t_symbol *s,int ac,const t_atom *av) { th = t,out = o,sym = s,argc = ac,argv = av; }
- // \note PD lock must already be held by caller
+ // \note PD sys lock must already be held by caller
void Send() const
{
if(out < 0)
@@ -165,9 +165,9 @@ protected:
ahead = p >= QUEUE_ATOMS?argc:p;
}
- int qhead,qtail;
+ volatile int qhead,qtail;
qmsg lst[QUEUE_LENGTH];
- int ahead,atail;
+ volatile int ahead,atail;
t_atom atoms[QUEUE_ATOMS];
};
@@ -244,8 +244,7 @@ static void Trigger()
{
#if FLEXT_SYS == FLEXT_SYS_PD
#ifdef FLEXT_QTHR
- // wake up a worker thread
- // (instead of triggering the clock)
+ // wake up worker thread
qthrcond.Signal();
#else
clock_delay(qclk,0);