1
Général / Re : fatal IO error 11 - Thread - Event
« le: Mars 30, 2015, 02:33:05 am »
Bonsoir,
Merci pour ta réponse.
Néanmoins, je viens de mettre l'appel XInitThreads(), et cela fonctionne toujours mal.
Je peux faire mon jeu et au bout d'un certain temps malgré mon appel à la fonction XinitThreads(), j'ai un crash.
Cordialement
Merci pour ta réponse.
Néanmoins, je viens de mettre l'appel XInitThreads(), et cela fonctionne toujours mal.
Je peux faire mon jeu et au bout d'un certain temps malgré mon appel à la fonction XinitThreads(), j'ai un crash.
Citer
[xcb] Unknown request in queue while dequeuing
[xcb] Most likely this is a multi-threaded client and XInitThreads has not been called
[xcb] Aborting, sorry about that.
projet: xcb_io.c:179: dequeue_pending_request: Assertion `!xcb_xlib_unknown_req_in_deq' failed.
Gfx::Gfx(int x, int y)
{
XInitThreads();
_x = x;
_y = y;
LoadDatas();
_thread = new sf::Thread(&Gfx::loop, this);
_thread->launch();
sleep(1);
}
{
XInitThreads();
_x = x;
_y = y;
LoadDatas();
_thread = new sf::Thread(&Gfx::loop, this);
_thread->launch();
sleep(1);
}
Cordialement