6 #ifndef CLONE_PARENT /* lameass glibc 2.2 doesn't define this */
7 #define CLONE_PARENT 0x00008000 /* even though the manpage documents it */
11 #include "validate.h" /* for CONTROL_STACK_SIZE etc */
14 #include "target-arch-os.h"
17 #ifdef LISP_FEATURE_GENCGC
21 #include "genesis/cons.h"
22 #define ALIEN_STACK_SIZE (1*1024*1024) /* 1Mb size chosen at random */
24 int dynamic_values_bytes=4096*sizeof(lispobj); /* same for all threads */
25 struct thread *all_threads;
26 lispobj all_threads_lock;
27 extern struct interrupt_data * global_interrupt_data;
29 void get_spinlock(lispobj *word,int value);
31 /* this is the first thing that clone() runs in the child (which is
32 * why the silly calling convention). Basically it calls the user's
33 * requested lisp function after doing arch_os_thread_init and
34 * whatever other bookkeeping needs to be done
37 /* set go to 0 to stop the thread before it starts. Convenient if you
38 * want to attach a debugger to it before it does anything */
42 new_thread_trampoline(struct thread *th)
46 function = th->unbound_marker;
48 fprintf(stderr, "/pausing 0x%lx(%d,%d) before new_thread_trampoline(0x%lx)\n",
49 (unsigned long)th,th->pid,getpid(),(unsigned long)function);
51 fprintf(stderr, "/continue\n");
53 th->unbound_marker = UNBOUND_MARKER_WIDETAG;
54 #ifdef LISP_FEATURE_SB_THREAD
55 /* wait here until our thread is linked into all_threads: see below */
56 while(th->pid<1) sched_yield();
59 lose("th->pid not set up right");
62 if(arch_os_thread_init(th)==0)
63 return 1; /* failure. no, really */
64 #if !defined(LISP_FEATURE_SB_THREAD) && defined(LISP_FEATURE_X86)
65 return call_into_lisp_first_time(function,args,0);
67 return funcall0(function);
71 /* this is called from any other thread to create the new one, and
72 * initialize all parts of it that can be initialized from another
76 pid_t create_thread(lispobj initial_function) {
77 union per_thread_data *per_thread;
78 struct thread *th=0; /* subdue gcc */
82 /* may as well allocate all the spaces at once: it saves us from
83 * having to decide what to do if only some of the allocations
86 THREAD_CONTROL_STACK_SIZE+
92 if(!spaces) goto cleanup;
93 per_thread=(union per_thread_data *)
95 THREAD_CONTROL_STACK_SIZE+
99 th=&per_thread->thread;
101 memcpy(per_thread,arch_os_get_current_thread(),
102 dynamic_values_bytes);
104 #ifdef LISP_FEATURE_SB_THREAD
106 for(i=0;i<(dynamic_values_bytes/sizeof(lispobj));i++)
107 per_thread->dynamic_values[i]=UNBOUND_MARKER_WIDETAG;
108 if(SymbolValue(FREE_TLS_INDEX,0)==UNBOUND_MARKER_WIDETAG)
111 make_fixnum(MAX_INTERRUPTS+
112 sizeof(struct thread)/sizeof(lispobj)),
114 #define STATIC_TLS_INIT(sym,field) \
115 ((struct symbol *)(sym-OTHER_POINTER_LOWTAG))->tls_index= \
116 make_fixnum(THREAD_SLOT_OFFSET_WORDS(field))
118 STATIC_TLS_INIT(BINDING_STACK_START,binding_stack_start);
119 STATIC_TLS_INIT(BINDING_STACK_POINTER,binding_stack_pointer);
120 STATIC_TLS_INIT(CONTROL_STACK_START,control_stack_start);
121 STATIC_TLS_INIT(CONTROL_STACK_END,control_stack_end);
122 STATIC_TLS_INIT(ALIEN_STACK,alien_stack_pointer);
123 #ifdef LISP_FEATURE_X86
124 STATIC_TLS_INIT(PSEUDO_ATOMIC_ATOMIC,pseudo_atomic_atomic);
125 STATIC_TLS_INIT(PSEUDO_ATOMIC_INTERRUPTED,pseudo_atomic_interrupted);
127 #undef STATIC_TLS_INIT
131 th->control_stack_start = spaces;
132 th->binding_stack_start=
133 (lispobj*)((void*)th->control_stack_start+THREAD_CONTROL_STACK_SIZE);
134 th->control_stack_end = th->binding_stack_start;
135 th->alien_stack_start=
136 (lispobj*)((void*)th->binding_stack_start+BINDING_STACK_SIZE);
137 th->binding_stack_pointer=th->binding_stack_start;
140 #ifdef LISP_FEATURE_STACK_GROWS_DOWNWARD_NOT_UPWARD
141 th->alien_stack_pointer=((void *)th->alien_stack_start
142 + ALIEN_STACK_SIZE-4); /* naked 4. FIXME */
144 th->alien_stack_pointer=((void *)th->alien_stack_start);
146 #ifdef LISP_FEATURE_X86
147 th->pseudo_atomic_interrupted=0;
148 /* runtime.c used to set PSEUDO_ATOMIC_ATOMIC =1 globally. I'm not
149 * sure why, but it appears to help */
150 th->pseudo_atomic_atomic=make_fixnum(1);
152 #ifdef LISP_FEATURE_GENCGC
153 gc_set_region_empty(&th->alloc_region);
156 #ifndef LISP_FEATURE_SB_THREAD
157 /* the tls-points-into-struct-thread trick is only good for threaded
158 * sbcl, because unithread sbcl doesn't have tls. So, we copy the
159 * appropriate values from struct thread here, and make sure that
160 * we use the appropriate SymbolValue macros to access any of the
161 * variable quantities from the C runtime. It's not quite OAOOM,
162 * it just feels like it */
163 SetSymbolValue(BINDING_STACK_START,th->binding_stack_start,th);
164 SetSymbolValue(CONTROL_STACK_START,th->control_stack_start,th);
165 SetSymbolValue(CONTROL_STACK_END,th->control_stack_end,th);
166 #ifdef LISP_FEATURE_X86
167 SetSymbolValue(BINDING_STACK_POINTER,th->binding_stack_pointer,th);
168 SetSymbolValue(ALIEN_STACK,th->alien_stack_pointer,th);
169 SetSymbolValue(PSEUDO_ATOMIC_ATOMIC,th->pseudo_atomic_atomic,th);
170 SetSymbolValue(PSEUDO_ATOMIC_INTERRUPTED,th->pseudo_atomic_interrupted,th);
172 current_binding_stack_pointer=th->binding_stack_pointer;
173 current_control_stack_pointer=th->control_stack_start;
176 bind_variable(CURRENT_CATCH_BLOCK,make_fixnum(0),th);
177 bind_variable(CURRENT_UNWIND_PROTECT_BLOCK,make_fixnum(0),th);
178 bind_variable(FREE_INTERRUPT_CONTEXT_INDEX,make_fixnum(0),th);
179 bind_variable(INTERRUPT_PENDING, NIL,th);
180 bind_variable(INTERRUPTS_ENABLED,T,th);
182 th->interrupt_data=os_validate(0,(sizeof (struct interrupt_data)));
184 memcpy(th->interrupt_data,
185 arch_os_get_current_thread()->interrupt_data,
186 sizeof (struct interrupt_data));
188 memcpy(th->interrupt_data,global_interrupt_data,
189 sizeof (struct interrupt_data));
191 th->unbound_marker=initial_function;
192 #ifdef LISP_FEATURE_SB_THREAD
193 #if defined(LISP_FEATURE_X86) && defined (LISP_FEATURE_LINUX)
195 clone(new_thread_trampoline,
196 (((void*)th->control_stack_start)+THREAD_CONTROL_STACK_SIZE-4),
197 (((getpid()!=parent_pid)?(CLONE_PARENT):0)
198 |CLONE_FILES|SIGALRM|CLONE_VM),th);
202 #error this stuff presently only works on x86 Linux
207 get_spinlock(&all_threads_lock,kid_pid);
208 th->next=all_threads;
210 /* note that th->pid is 0 at this time. We rely on all_threads_lock
211 * to ensure that we don't have >1 thread with pid=0 on the list at once
213 protect_control_stack_guard_page(th->pid,1);
215 th->pid=kid_pid; /* child will not start until this is set */
216 #ifndef LISP_FEATURE_SB_THREAD
217 new_thread_trampoline(all_threads); /* call_into_lisp */
218 lose("Clever child? Idiot savant, verging on the.");
223 /* if(th && th->tls_cookie>=0) os_free_tls_pointer(th); */
224 if(spaces) os_invalidate(spaces,
225 THREAD_CONTROL_STACK_SIZE+BINDING_STACK_SIZE+
226 ALIEN_STACK_SIZE+dynamic_values_bytes);
230 void destroy_thread (struct thread *th)
232 /* precondition: the unix task has already been killed and exited.
233 * This is called by the parent */
234 #ifdef LISP_FEATURE_GENCGC
235 gc_alloc_update_page_tables(0, &th->alloc_region);
237 get_spinlock(&all_threads_lock,th->pid);
239 all_threads=th->next;
241 struct thread *th1=all_threads;
242 while(th1->next!=th) th1=th1->next;
243 th1->next=th->next; /* unlink */
246 if(th && th->tls_cookie>=0) arch_os_thread_cleanup(th);
247 os_invalidate((os_vm_address_t) th->control_stack_start,
249 * (th->control_stack_end-th->control_stack_start)) +
250 BINDING_STACK_SIZE+ALIEN_STACK_SIZE+dynamic_values_bytes+
255 struct thread *find_thread_by_pid(pid_t pid)
259 if(th->pid==pid) return th;
263 void block_sigcont(void)
265 /* don't allow ourselves to receive SIGCONT while we're in the
266 * "ambiguous" state of being on the queue but not actually stopped.
269 sigemptyset(&newset);
270 sigaddset(&newset,SIGCONT);
271 sigprocmask(SIG_BLOCK, &newset, 0);
274 /* This is not needed unless #+SB-THREAD, and since sigwaitinfo()
275 * doesn't seem to be easily available everywhere (OpenBSD...) it's
276 * more trouble than it's worth to compile it when not needed. */
277 #if defined LISP_FEATURE_SB_THREAD
278 void unblock_sigcont_and_sleep(void)
282 sigaddset(&set,SIGCONT);
284 sigprocmask(SIG_UNBLOCK,&set,0);