This website works better with JavaScript.
Home
Help
Sign In
lolengine
/
lol
mirror of
https://github.com/lolengine/lol
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
Browse Source
core: workaround for systems that don't like thread exiting early.
legacy
Sam Hocevar
sam
12 years ago
parent
d9fab8c6fa
commit
23a55c53fe
1 changed files
with
4 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-0
src/ticker.cpp
+ 4
- 0
src/ticker.cpp
View File
@@ -312,6 +312,10 @@ void *TickerData::DrawThreadMain(void * /* p */)
void *TickerData::DiskThreadMain(void * /* p */)
{
#if defined __CELLOS_LV2__
/* FIXME: temporary hack to avoid crashes */
for (;;);
#endif
return NULL;
}
Write
Preview
Loading…
Cancel
Save