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>
28 #include "wine/port.h"
32 #include "wine/exception.h"
33 #include "debugtools.h"
35 DEFAULT_DEBUG_CHANNEL(thread
)
37 /* Xlib critical section (FIXME: does not belong here) */
38 CRITICAL_SECTION X11DRV_CritSection
= { 0, };
45 # define CLONE_VM 0x00000100
46 # define CLONE_FS 0x00000200
47 # define CLONE_FILES 0x00000400
48 # define CLONE_SIGHAND 0x00000800
49 # define CLONE_PID 0x00001000
50 # endif /* CLONE_VM */
55 #ifndef NO_REENTRANT_LIBC
57 /***********************************************************************
58 * __errno_location/__error/___errno
60 * Get the per-thread errno location.
62 #ifdef HAVE__ERRNO_LOCATION
63 int *__errno_location()
71 #ifdef HAVE__THR_ERRNO
75 if (!init_done
) return perrno
;
76 #ifdef NO_REENTRANT_X11
77 /* Use static libc errno while running in Xlib. */
78 if (X11DRV_CritSection
.OwningThread
== GetCurrentThreadId())
81 return &NtCurrentTeb()->thread_errno
;
84 /***********************************************************************
87 * Get the per-thread h_errno location.
89 int *__h_errno_location()
91 if (!init_done
) return ph_errno
;
92 #ifdef NO_REENTRANT_X11
93 /* Use static libc h_errno while running in Xlib. */
94 if (X11DRV_CritSection
.OwningThread
== GetCurrentThreadId())
97 return &NtCurrentTeb()->thread_h_errno
;
100 #endif /* NO_REENTRANT_LIBC */
102 /***********************************************************************
103 * SYSDEPS_SetCurThread
105 * Make 'thread' the current thread.
107 void SYSDEPS_SetCurThread( TEB
*teb
)
109 #if defined(__i386__)
110 /* On the i386, the current thread is in the %fs register */
111 SET_FS( teb
->teb_sel
);
112 #elif defined(HAVE__LWP_CREATE)
113 /* On non-i386 Solaris, we use the LWP private pointer */
114 _lwp_setprivate( teb
);
117 init_done
= 1; /* now we can use threading routines */
120 /***********************************************************************
121 * SYSDEPS_StartThread
123 * Startup routine for a new thread.
125 static void SYSDEPS_StartThread( TEB
*teb
)
127 SYSDEPS_SetCurThread( teb
);
134 __EXCEPT(UnhandledExceptionFilter
)
136 TerminateThread( GetCurrentThread(), GetExceptionCode() );
139 SYSDEPS_ExitThread(); /* should never get here */
143 /***********************************************************************
144 * SYSDEPS_SpawnThread
146 * Start running a new thread.
147 * Return -1 on error, 0 if OK.
149 int SYSDEPS_SpawnThread( TEB
*teb
)
151 #ifndef NO_REENTRANT_LIBC
154 if (clone( (int (*)(void *))SYSDEPS_StartThread
, teb
->stack_top
,
155 CLONE_VM
| CLONE_FS
| CLONE_FILES
| SIGCHLD
, teb
) < 0)
157 /* FIXME: close the child socket in the parent process */
158 /* close( thread->socket );*/
163 DWORD
*sp
= (DWORD
*)teb
->stack_top
;
166 *--sp
= (DWORD
)SYSDEPS_StartThread
;
168 "pushl %2;\n\t" /* RFPROC|RMEM */
169 "pushl $0;\n\t" /* 0 ? */
170 "movl %1,%%eax;\n\t" /* SYS_rfork */
171 ".byte 0x9a; .long 0; .word 7;\n\t" /* lcall 7:0... FreeBSD syscall */
172 "cmpl $0, %%edx;\n\t"
174 "movl %0,%%esp;\n\t" /* father -> new thread */
176 "1:\n\t" /* child -> caller thread */
178 : "r" (sp
), "g" (SYS_rfork
), "g" (RFPROC
|RFMEM
)
183 #ifdef HAVE__LWP_CREATE
185 _lwp_makecontext( &context
, (void(*)(void *))SYSDEPS_StartThread
, teb
,
186 NULL
, teb
->stack_base
, (char *)teb
->stack_top
- (char *)teb
->stack_base
);
187 if ( _lwp_create( &context
, 0, NULL
) )
192 #endif /* NO_REENTRANT_LIBC */
194 FIXME("CreateThread: stub\n" );
200 /***********************************************************************
203 * Exit a running thread; must not return.
204 * Must not make any reference to the thread structures (THDB etc.) as
205 * they have already been deleted.
207 void SYSDEPS_ExitThread(void)
209 #ifdef HAVE__LWP_CREATE
217 /**********************************************************************
218 * NtCurrentTeb (NTDLL.89)
220 * This will crash and burn if called before threading is initialized
223 /* if it was defined as a macro, we need to do some magic */
228 struct _TEB
* WINAPI
NtCurrentTeb(void)