Add support for selection of console mode drivers to use using the
[wine/multimedia.git] / scheduler / sysdeps.c
blobf883f121426731d6c44d4f278bca5d8f30de09b0
1 /*
2 * System-dependent scheduler support
4 * Copyright 1998 Alexandre Julliard
5 */
7 /* Get pointers to the static errno and h_errno variables used by Xlib. This
8 must be done before including <errno.h> makes the variables invisible. */
9 extern int errno;
10 static int *perrno = &errno;
11 extern int h_errno;
12 static int *ph_errno = &h_errno;
14 #include <signal.h>
15 #include <stdio.h>
16 #include <unistd.h>
17 #include "thread.h"
18 #include "server.h"
19 #include "winbase.h"
20 #include "debug.h"
22 /* Xlib critical section (FIXME: does not belong here) */
23 CRITICAL_SECTION X11DRV_CritSection = { 0, };
25 #ifdef HAVE_CLONE_SYSCALL
26 # ifdef HAVE_SCHED_H
27 # include <sched.h>
28 # endif
29 # ifndef CLONE_VM
30 # define CLONE_VM 0x00000100
31 # define CLONE_FS 0x00000200
32 # define CLONE_FILES 0x00000400
33 # define CLONE_SIGHAND 0x00000800
34 # define CLONE_PID 0x00001000
35 /* If we didn't get the flags, we probably didn't get the prototype either */
36 extern int clone( int (*fn)(void *arg), void *stack, int flags, void *arg );
37 # endif /* CLONE_VM */
38 #endif /* HAVE_CLONE_SYSCALL */
41 #ifdef USE_THREADS
42 /***********************************************************************
43 * __errno_location
45 * Get the per-thread errno location.
47 int *__errno_location()
49 THDB *thdb = THREAD_Current();
50 if (!thdb) return perrno;
51 #ifdef NO_REENTRANT_X11
52 /* Use static libc errno while running in Xlib. */
53 if (X11DRV_CritSection.OwningThread == THDB_TO_THREAD_ID(thdb))
54 return perrno;
55 #endif
56 return &thdb->thread_errno;
59 /***********************************************************************
60 * __h_errno_location
62 * Get the per-thread h_errno location.
64 int *__h_errno_location()
66 THDB *thdb = THREAD_Current();
67 if (!thdb) return ph_errno;
68 #ifdef NO_REENTRANT_X11
69 /* Use static libc h_errno while running in Xlib. */
70 if (X11DRV_CritSection.OwningThread == THDB_TO_THREAD_ID(thdb))
71 return ph_errno;
72 #endif
73 return &thdb->thread_h_errno;
76 /***********************************************************************
77 * SYSDEPS_StartThread
79 * Startup routine for a new thread.
81 static void SYSDEPS_StartThread( THDB *thdb )
83 thdb->unix_pid = getpid();
84 SET_FS( thdb->teb_sel );
85 THREAD_Start( thdb );
87 #endif /* USE_THREADS */
90 /***********************************************************************
91 * SYSDEPS_SpawnThread
93 * Start running a new thread.
94 * Return -1 on error, 0 if OK.
96 int SYSDEPS_SpawnThread( THDB *thread )
98 #ifdef USE_THREADS
100 #ifdef HAVE_CLONE_SYSCALL
101 if (clone( (int (*)(void *))SYSDEPS_StartThread, thread->teb.stack_top,
102 CLONE_VM | CLONE_FS | CLONE_FILES | SIGCHLD, thread ) < 0)
103 return -1;
104 /* FIXME: close the child socket in the parent process */
105 /* close( thread->socket );*/
106 #endif
108 #ifdef HAVE_RFORK
109 FIXME(thread, "Threads using rfork() not implemented\n" );
110 #endif
112 #else /* !USE_THREADS */
113 FIXME(thread, "CreateThread: stub\n" );
114 #endif /* USE_THREADS */
115 return 0;
119 /***********************************************************************
120 * SYSDEPS_ExitThread
122 * Exit a running thread; must not return.
124 void SYSDEPS_ExitThread(void)
126 THDB *thdb = THREAD_Current();
127 close( thdb->socket );
128 _exit( 0 );
132 /**********************************************************************
133 * NtCurrentTeb (NTDLL.89)
135 * This will crash and burn if called before threading is initialized
137 TEB * WINAPI NtCurrentTeb(void)
139 #ifdef __i386__
140 TEB *teb;
142 /* Get the TEB self-pointer */
143 __asm__( ".byte 0x64\n\tmovl (%1),%0"
144 : "=r" (teb) : "r" (&((TEB *)0)->self) );
145 return teb;
146 #else
147 return &pCurrentThread->teb;
148 #endif /* __i386__ */