2 * System-dependent scheduler support
4 * Copyright 1998 Alexandre Julliard
9 /* Get pointers to the static errno and h_errno variables used by Xlib. This
10 must be done before including <errno.h> makes the variables invisible. */
12 static int *perrno
= &errno
;
14 static int *ph_errno
= &h_errno
;
19 #ifdef HAVE_SYS_SYSCALL_H
20 # include <sys/syscall.h>
25 #ifdef HAVE_UCONTEXT_H
26 # include <ucontext.h>
31 #include "wine/exception.h"
32 #include "debugtools.h"
34 DEFAULT_DEBUG_CHANNEL(thread
)
37 #define HAVE_CLONE_SYSCALL
40 /* Xlib critical section (FIXME: does not belong here) */
41 CRITICAL_SECTION X11DRV_CritSection
= { 0, };
43 #ifdef HAVE_CLONE_SYSCALL
48 # define CLONE_VM 0x00000100
49 # define CLONE_FS 0x00000200
50 # define CLONE_FILES 0x00000400
51 # define CLONE_SIGHAND 0x00000800
52 # define CLONE_PID 0x00001000
53 /* If we didn't get the flags, we probably didn't get the prototype either */
54 extern int clone( int (*fn
)(void *arg
), void *stack
, int flags
, void *arg
);
55 # endif /* CLONE_VM */
56 #endif /* HAVE_CLONE_SYSCALL */
60 #ifndef NO_REENTRANT_LIBC
62 /***********************************************************************
63 * __errno_location/__error/___errno
65 * Get the per-thread errno location.
67 #ifdef HAVE__ERRNO_LOCATION
68 int *__errno_location()
76 #ifdef HAVE__THR_ERRNO
80 if (!init_done
) return perrno
;
81 #ifdef NO_REENTRANT_X11
82 /* Use static libc errno while running in Xlib. */
83 if (X11DRV_CritSection
.OwningThread
== GetCurrentThreadId())
86 return &NtCurrentTeb()->thread_errno
;
89 /***********************************************************************
92 * Get the per-thread h_errno location.
94 int *__h_errno_location()
96 if (!init_done
) return ph_errno
;
97 #ifdef NO_REENTRANT_X11
98 /* Use static libc h_errno while running in Xlib. */
99 if (X11DRV_CritSection
.OwningThread
== GetCurrentThreadId())
102 return &NtCurrentTeb()->thread_h_errno
;
105 #endif /* NO_REENTRANT_LIBC */
107 /***********************************************************************
108 * SYSDEPS_SetCurThread
110 * Make 'thread' the current thread.
112 void SYSDEPS_SetCurThread( TEB
*teb
)
114 #if defined(__i386__)
115 /* On the i386, the current thread is in the %fs register */
116 SET_FS( teb
->teb_sel
);
117 #elif defined(HAVE__LWP_CREATE)
118 /* On non-i386 Solaris, we use the LWP private pointer */
119 _lwp_setprivate( teb
);
122 init_done
= 1; /* now we can use threading routines */
125 /***********************************************************************
126 * SYSDEPS_StartThread
128 * Startup routine for a new thread.
130 static void SYSDEPS_StartThread( TEB
*teb
)
132 SYSDEPS_SetCurThread( teb
);
139 __EXCEPT(UnhandledExceptionFilter
)
141 TerminateThread( GetCurrentThread(), GetExceptionCode() );
144 SYSDEPS_ExitThread(); /* should never get here */
148 /***********************************************************************
149 * SYSDEPS_SpawnThread
151 * Start running a new thread.
152 * Return -1 on error, 0 if OK.
154 int SYSDEPS_SpawnThread( TEB
*teb
)
156 #ifndef NO_REENTRANT_LIBC
158 #ifdef HAVE_CLONE_SYSCALL
159 if (clone( (int (*)(void *))SYSDEPS_StartThread
, teb
->stack_top
,
160 CLONE_VM
| CLONE_FS
| CLONE_FILES
| SIGCHLD
, teb
) < 0)
162 /* FIXME: close the child socket in the parent process */
163 /* close( thread->socket );*/
168 DWORD
*sp
= (DWORD
*)teb
->stack_top
;
171 *--sp
= (DWORD
)SYSDEPS_StartThread
;
173 "pushl %2;\n\t" /* RFPROC|RMEM */
174 "pushl $0;\n\t" /* 0 ? */
175 "movl %1,%%eax;\n\t" /* SYS_rfork */
176 ".byte 0x9a; .long 0; .word 7;\n\t" /* lcall 7:0... FreeBSD syscall */
177 "cmpl $0, %%edx;\n\t"
179 "movl %0,%%esp;\n\t" /* father -> new thread */
181 "1:\n\t" /* child -> caller thread */
183 : "r" (sp
), "g" (SYS_rfork
), "g" (RFPROC
|RFMEM
)
188 #ifdef HAVE__LWP_CREATE
190 _lwp_makecontext( &context
, (void(*)(void *))SYSDEPS_StartThread
, teb
,
191 NULL
, teb
->stack_base
, (char *)teb
->stack_top
- (char *)teb
->stack_base
);
192 if ( _lwp_create( &context
, 0, NULL
) )
197 #endif /* NO_REENTRANT_LIBC */
199 FIXME("CreateThread: stub\n" );
205 /***********************************************************************
208 * Exit a running thread; must not return.
209 * Must not make any reference to the thread structures (THDB etc.) as
210 * they have already been deleted.
212 void SYSDEPS_ExitThread(void)
214 #ifdef HAVE__LWP_CREATE
222 /**********************************************************************
223 * NtCurrentTeb (NTDLL.89)
225 * This will crash and burn if called before threading is initialized
228 /* if it was defined as a macro, we need to do some magic */
233 struct _TEB
* WINAPI
NtCurrentTeb(void)