Init signals before calling CLIENT_InitThread since we can receive a
signal there.
This commit is contained in:
parent
eded087e4e
commit
b5a495c77a
|
@ -162,8 +162,8 @@ static void cleanup_thread( void *ptr )
|
||||||
static void SYSDEPS_StartThread( TEB *teb )
|
static void SYSDEPS_StartThread( TEB *teb )
|
||||||
{
|
{
|
||||||
SYSDEPS_SetCurThread( teb );
|
SYSDEPS_SetCurThread( teb );
|
||||||
CLIENT_InitThread();
|
|
||||||
SIGNAL_Init();
|
SIGNAL_Init();
|
||||||
|
CLIENT_InitThread();
|
||||||
__TRY
|
__TRY
|
||||||
{
|
{
|
||||||
teb->startup();
|
teb->startup();
|
||||||
|
|
Loading…
Reference in New Issue