Tabbing in the listview of the shellview.
[wine/dcerpc.git] / scheduler / sysdeps.c
blob6086a385181ad23e5529e4dfed1427713f841856
1 /*
2 * System-dependent scheduler support
4 * Copyright 1998 Alexandre Julliard
5 */
7 #include "config.h"
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. */
11 extern int errno;
12 static int *perrno = &errno;
13 extern int h_errno;
14 static int *ph_errno = &h_errno;
16 #include <signal.h>
17 #include <stdio.h>
18 #include <unistd.h>
19 #ifdef HAVE_SYS_SYSCALL_H
20 # include <sys/syscall.h>
21 #endif
22 #ifdef HAVE_SYS_LWP_H
23 # include <sys/lwp.h>
24 #endif
25 #ifdef HAVE_UCONTEXT_H
26 # include <ucontext.h>
27 #endif
28 #include "thread.h"
29 #include "server.h"
30 #include "winbase.h"
31 #include "debugtools.h"
33 DEFAULT_DEBUG_CHANNEL(thread)
35 #ifdef linux
36 #define HAVE_CLONE_SYSCALL
37 #endif
39 /* Xlib critical section (FIXME: does not belong here) */
40 CRITICAL_SECTION X11DRV_CritSection = { 0, };
42 #ifdef HAVE_CLONE_SYSCALL
43 # ifdef HAVE_SCHED_H
44 # include <sched.h>
45 # endif
46 # ifndef CLONE_VM
47 # define CLONE_VM 0x00000100
48 # define CLONE_FS 0x00000200
49 # define CLONE_FILES 0x00000400
50 # define CLONE_SIGHAND 0x00000800
51 # define CLONE_PID 0x00001000
52 /* If we didn't get the flags, we probably didn't get the prototype either */
53 extern int clone( int (*fn)(void *arg), void *stack, int flags, void *arg );
54 # endif /* CLONE_VM */
55 #endif /* HAVE_CLONE_SYSCALL */
57 static int init_done;
59 #ifndef NO_REENTRANT_LIBC
61 /***********************************************************************
62 * __errno_location/__error/___errno
64 * Get the per-thread errno location.
66 #ifdef HAVE__ERRNO_LOCATION
67 int *__errno_location()
68 #endif
69 #ifdef HAVE__ERROR
70 int *__error()
71 #endif
72 #ifdef HAVE___ERRNO
73 int *___errno()
74 #endif
75 #ifdef HAVE__THR_ERRNO
76 int *__thr_errno()
77 #endif
79 if (!init_done) return perrno;
80 #ifdef NO_REENTRANT_X11
81 /* Use static libc errno while running in Xlib. */
82 if (X11DRV_CritSection.OwningThread == GetCurrentThreadId())
83 return perrno;
84 #endif
85 return &NtCurrentTeb()->thread_errno;
88 /***********************************************************************
89 * __h_errno_location
91 * Get the per-thread h_errno location.
93 int *__h_errno_location()
95 if (!init_done) return ph_errno;
96 #ifdef NO_REENTRANT_X11
97 /* Use static libc h_errno while running in Xlib. */
98 if (X11DRV_CritSection.OwningThread == GetCurrentThreadId())
99 return ph_errno;
100 #endif
101 return &NtCurrentTeb()->thread_h_errno;
104 #endif /* NO_REENTRANT_LIBC */
106 /***********************************************************************
107 * SYSDEPS_SetCurThread
109 * Make 'thread' the current thread.
111 void SYSDEPS_SetCurThread( TEB *teb )
113 #if defined(__i386__)
114 /* On the i386, the current thread is in the %fs register */
115 SET_FS( teb->teb_sel );
116 #elif defined(HAVE__LWP_CREATE)
117 /* On non-i386 Solaris, we use the LWP private pointer */
118 _lwp_setprivate( teb );
119 #endif
121 init_done = 1; /* now we can use threading routines */
124 /***********************************************************************
125 * SYSDEPS_StartThread
127 * Startup routine for a new thread.
129 static void SYSDEPS_StartThread( TEB *teb )
131 SYSDEPS_SetCurThread( teb );
132 CLIENT_InitThread();
133 teb->startup();
134 SYSDEPS_ExitThread(); /* should never get here */
138 /***********************************************************************
139 * SYSDEPS_SpawnThread
141 * Start running a new thread.
142 * Return -1 on error, 0 if OK.
144 int SYSDEPS_SpawnThread( TEB *teb )
146 #ifndef NO_REENTRANT_LIBC
148 #ifdef HAVE_CLONE_SYSCALL
149 if (clone( (int (*)(void *))SYSDEPS_StartThread, teb->stack_top,
150 CLONE_VM | CLONE_FS | CLONE_FILES | SIGCHLD, teb ) < 0)
151 return -1;
152 /* FIXME: close the child socket in the parent process */
153 /* close( thread->socket );*/
154 return 0;
155 #endif
157 #ifdef HAVE_RFORK
158 DWORD *sp = (DWORD *)teb->stack_top;
159 *--sp = (DWORD)teb;
160 *--sp = 0;
161 *--sp = (DWORD)SYSDEPS_StartThread;
162 __asm__(
163 "pushl %2;\n\t" /* RFPROC|RMEM */
164 "pushl $0;\n\t" /* 0 ? */
165 "movl %1,%%eax;\n\t" /* SYS_rfork */
166 ".byte 0x9a; .long 0; .word 7;\n\t" /* lcall 7:0... FreeBSD syscall */
167 "cmpl $0, %%edx;\n\t"
168 "je 1f;\n\t"
169 "movl %0,%%esp;\n\t" /* father -> new thread */
170 "ret;\n"
171 "1:\n\t" /* child -> caller thread */
172 "addl $8,%%esp" :
173 : "r" (sp), "g" (SYS_rfork), "g" (RFPROC|RFMEM)
174 : "eax", "edx");
175 return 0;
176 #endif
178 #ifdef HAVE__LWP_CREATE
179 ucontext_t context;
180 _lwp_makecontext( &context, (void(*)(void *))SYSDEPS_StartThread, teb,
181 NULL, teb->stack_base, (char *)teb->stack_top - (char *)teb->stack_base );
182 if ( _lwp_create( &context, 0, NULL ) )
183 return -1;
184 return 0;
185 #endif
187 #endif /* NO_REENTRANT_LIBC */
189 FIXME("CreateThread: stub\n" );
190 return 0;
195 /***********************************************************************
196 * SYSDEPS_ExitThread
198 * Exit a running thread; must not return.
199 * Must not make any reference to the thread structures (THDB etc.) as
200 * they have already been deleted.
202 void SYSDEPS_ExitThread(void)
204 #ifdef HAVE__LWP_CREATE
205 _lwp_exit();
206 #endif
208 _exit( 0 );
212 /**********************************************************************
213 * NtCurrentTeb (NTDLL.89)
215 * This will crash and burn if called before threading is initialized
218 /* if it was defined as a macro, we need to do some magic */
219 #ifdef NtCurrentTeb
220 #undef NtCurrentTeb
221 #endif
223 struct _TEB * WINAPI NtCurrentTeb(void)
225 return __get_teb();