This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
Carla
mirror of
https://github.com/falkTX/Carla
Watch
1
Star
0
Fork
0
Code
Releases
42
Activity
Browse Source
Don't spinlock on CarlaThread::waitForStarted(),
fixes
#14
tags/1.9.4
falkTX
11 years ago
parent
b4a2c9bdf8
commit
abe1d212b9
1 changed files
with
2 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-1
source/utils/CarlaThread.hpp
+ 2
- 1
source/utils/CarlaThread.hpp
View File
@@ -200,7 +200,8 @@ public:
if (timeout == 0)
{
while (! fStarted) {}
while (! fStarted)
carla_msleep(1);
}
else
{
Write
Preview
Loading…
Cancel
Save