Explorar el Código

core: workaround for systems that don't like thread exiting early.

legacy
Sam Hocevar sam hace 12 años
padre
commit
23a55c53fe
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  1. +4
    -0
      src/ticker.cpp

+ 4
- 0
src/ticker.cpp Ver fichero

@@ -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;
}



Cargando…
Cancelar
Guardar