source: libcfa/src/concurrency/kernel.cfa@ 2d8f7b0

ADT arm-eh ast-experimental enum forall-pointer-decay jacob/cs343-translation new-ast new-ast-unique-expr pthread-emulation qualifiedEnum
Last change on this file since 2d8f7b0 was 2d8f7b0, checked in by Thierry Delisle <tdelisle@…>, 5 years ago

Implemented basic non-blocking io

  • Property mode set to 100644
File size: 33.6 KB
RevLine 
[8118303]1//
2// Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
7// kernel.c --
8//
9// Author : Thierry Delisle
[75f3522]10// Created On : Tue Jan 17 12:27:26 2017
[6b0b624]11// Last Modified By : Peter A. Buhr
[e3fea42]12// Last Modified On : Tue Feb 4 13:03:15 2020
13// Update Count : 58
[8118303]14//
15
[2026bb6]16#define __cforall_thread__
17
[8118303]18//C Includes
[c84e80a]19#include <stddef.h>
[214e8da]20#include <errno.h>
[ea8b2f7]21#include <string.h>
[eb2e723]22extern "C" {
[9d944b2]23#include <stdio.h>
[8fcbb4c]24#include <fenv.h>
[eb2e723]25#include <sys/resource.h>
[58b6d1b]26#include <signal.h>
[9d944b2]27#include <unistd.h>
[27f5f71]28#include <limits.h> // PTHREAD_STACK_MIN
[1a3040c]29#include <sys/mman.h> // mprotect
[eb2e723]30}
[8118303]31
32//CFA Includes
[58b6d1b]33#include "time.hfa"
[73abe95]34#include "kernel_private.hfa"
35#include "preemption.hfa"
36#include "startup.hfa"
[8118303]37
38//Private includes
39#define __CFA_INVOKE_PRIVATE__
40#include "invoke.h"
41
[deca0f5]42//-----------------------------------------------------------------------------
43// Some assembly required
[1805b1b]44#if defined( __i386 )
[deca0f5]45 #define CtxGet( ctx ) \
46 __asm__ volatile ( \
47 "movl %%esp,%0\n"\
48 "movl %%ebp,%1\n"\
49 : "=rm" (ctx.SP),\
50 "=rm" (ctx.FP) \
51 )
52
53 // mxcr : SSE Status and Control bits (control bits are preserved across function calls)
54 // fcw : X87 FPU control word (preserved across function calls)
55 #define __x87_store \
56 uint32_t __mxcr; \
57 uint16_t __fcw; \
58 __asm__ volatile ( \
59 "stmxcsr %0\n" \
60 "fnstcw %1\n" \
61 : "=m" (__mxcr),\
62 "=m" (__fcw) \
63 )
64
65 #define __x87_load \
66 __asm__ volatile ( \
67 "fldcw %1\n" \
68 "ldmxcsr %0\n" \
69 ::"m" (__mxcr),\
70 "m" (__fcw) \
71 )
72
73#elif defined( __x86_64 )
74 #define CtxGet( ctx ) \
75 __asm__ volatile ( \
76 "movq %%rsp,%0\n"\
77 "movq %%rbp,%1\n"\
78 : "=rm" (ctx.SP),\
79 "=rm" (ctx.FP) \
80 )
81
82 #define __x87_store \
83 uint32_t __mxcr; \
84 uint16_t __fcw; \
85 __asm__ volatile ( \
86 "stmxcsr %0\n" \
87 "fnstcw %1\n" \
88 : "=m" (__mxcr),\
89 "=m" (__fcw) \
90 )
91
92 #define __x87_load \
93 __asm__ volatile ( \
94 "fldcw %1\n" \
95 "ldmxcsr %0\n" \
96 :: "m" (__mxcr),\
97 "m" (__fcw) \
98 )
99
100
101#elif defined( __ARM_ARCH )
102#define CtxGet( ctx ) __asm__ ( \
103 "mov %0,%%sp\n" \
104 "mov %1,%%r11\n" \
105 : "=rm" (ctx.SP), "=rm" (ctx.FP) )
106#else
107 #error unknown hardware architecture
108#endif
109
110//-----------------------------------------------------------------------------
[2ac095d]111//Start and stop routine for the kernel, declared first to make sure they run first
[8c50aed]112static void __kernel_startup (void) __attribute__(( constructor( STARTUP_PRIORITY_KERNEL ) ));
113static void __kernel_shutdown(void) __attribute__(( destructor ( STARTUP_PRIORITY_KERNEL ) ));
[2ac095d]114
[92e7631]115//-----------------------------------------------------------------------------
116// Kernel Scheduling logic
117static $thread * __next_thread(cluster * this);
118static void __run_thread(processor * this, $thread * dst);
119static $thread * __halt(processor * this);
120static bool __wake_one(cluster * cltr, bool was_empty);
121static bool __wake_proc(processor *);
122
[8def349]123//-----------------------------------------------------------------------------
124// Kernel storage
[b2f6113]125KERNEL_STORAGE(cluster, mainCluster);
126KERNEL_STORAGE(processor, mainProcessor);
[ac2b598]127KERNEL_STORAGE($thread, mainThread);
[b2f6113]128KERNEL_STORAGE(__stack_t, mainThreadCtx);
[8def349]129
[de6319f]130cluster * mainCluster;
131processor * mainProcessor;
[ac2b598]132$thread * mainThread;
[eb2e723]133
[ea8b2f7]134extern "C" {
[1805b1b]135 struct { __dllist_t(cluster) list; __spinlock_t lock; } __cfa_dbg_global_clusters;
[ea8b2f7]136}
[de94a60]137
[b2f6113]138size_t __page_size = 0;
139
[bd98b58]140//-----------------------------------------------------------------------------
141// Global state
[afc2427]142thread_local struct KernelThreadData kernelTLS __attribute__ ((tls_model ( "initial-exec" ))) = {
[1805b1b]143 NULL, // cannot use 0p
[b10affd]144 NULL,
[09d4b22]145 { 1, false, false },
[21184e3]146 6u //this should be seeded better but due to a bug calling rdtsc doesn't work
[b10affd]147};
[c84e80a]148
149//-----------------------------------------------------------------------------
[de6319f]150// Struct to steal stack
[8def349]151struct current_stack_info_t {
[1805b1b]152 __stack_t * storage; // pointer to stack object
153 void * base; // base of stack
154 void * limit; // stack grows towards stack limit
155 void * context; // address of cfa_context_t
[c84e80a]156};
157
[242a902]158void ?{}( current_stack_info_t & this ) {
[b2f6113]159 __stack_context_t ctx;
160 CtxGet( ctx );
161 this.base = ctx.FP;
[8def349]162
163 rlimit r;
[132fad4]164 getrlimit( RLIMIT_STACK, &r);
[69a61d2]165 size_t size = r.rlim_cur;
[8def349]166
[69a61d2]167 this.limit = (void *)(((intptr_t)this.base) - size);
[9236060]168 this.context = &storage_mainThreadCtx;
[8def349]169}
170
[de6319f]171//-----------------------------------------------------------------------------
172// Main thread construction
[8def349]173
[ac2b598]174void ?{}( $coroutine & this, current_stack_info_t * info) with( this ) {
[b2f6113]175 stack.storage = info->storage;
176 with(*stack.storage) {
177 limit = info->limit;
178 base = info->base;
179 }
[ffe2fad]180 __attribute__((may_alias)) intptr_t * istorage = (intptr_t*) &stack.storage;
181 *istorage |= 0x1;
[65deb18]182 name = "Main Thread";
183 state = Start;
[1805b1b]184 starter = 0p;
185 last = 0p;
186 cancellation = 0p;
[8def349]187}
188
[ac2b598]189void ?{}( $thread & this, current_stack_info_t * info) with( this ) {
[e8e457e]190 state = Start;
[65deb18]191 self_cor{ info };
[82c948c]192 curr_cor = &self_cor;
[de6319f]193 curr_cluster = mainCluster;
[82c948c]194 self_mon.owner = &this;
195 self_mon.recursion = 1;
196 self_mon_p = &self_mon;
[1805b1b]197 next = 0p;
[de94a60]198
[1805b1b]199 node.next = 0p;
200 node.prev = 0p;
[a1a17a74]201 doregister(curr_cluster, this);
[82c948c]202
203 monitors{ &self_mon_p, 1, (fptr_t)0 };
[8def349]204}
[c84e80a]205
[8def349]206//-----------------------------------------------------------------------------
207// Processor coroutine
[de6319f]208void ?{}(processorCtx_t & this) {
[39fea2f]209
[8def349]210}
211
[39fea2f]212// Construct the processor context of non-main processors
[c29c342]213static void ?{}(processorCtx_t & this, processor * proc, current_stack_info_t * info) {
[242a902]214 (this.__cor){ info };
215 this.proc = proc;
[8def349]216}
217
[c7a900a]218static void * __invoke_processor(void * arg);
[8c50aed]219
[e3fea42]220void ?{}(processor & this, const char name[], cluster & cltr) with( this ) {
[de6319f]221 this.name = name;
222 this.cltr = &cltr;
[c40e7c5]223 terminated{ 0 };
[b0c7419]224 destroyer = 0p;
[c40e7c5]225 do_terminate = false;
[1805b1b]226 preemption_alarm = 0p;
[c40e7c5]227 pending_preemption = false;
[094476d]228 runner.proc = &this;
[8def349]229
[92e7631]230 idle{};
[6b4cdd3]231
[8c50aed]232 __cfaabi_dbg_print_safe("Kernel : Starting core %p\n", &this);
233
[c7a900a]234 this.stack = __create_pthread( &this.kernel_thread, __invoke_processor, (void *)&this );
[8c50aed]235
236 __cfaabi_dbg_print_safe("Kernel : core %p started\n", &this);
[c84e80a]237}
238
[65deb18]239void ^?{}(processor & this) with( this ){
[ea8b2f7]240 if( ! __atomic_load_n(&do_terminate, __ATOMIC_ACQUIRE) ) {
[36982fc]241 __cfaabi_dbg_print_safe("Kernel : core %p signaling termination\n", &this);
[85b1deb]242
243 __atomic_store_n(&do_terminate, true, __ATOMIC_RELAXED);
[92e7631]244 __wake_proc( &this );
[85b1deb]245
[65deb18]246 P( terminated );
[14a61b5]247 verify( kernelTLS.this_processor != &this);
[8def349]248 }
[6b4cdd3]249
[1805b1b]250 pthread_join( kernel_thread, 0p );
[27f5f71]251 free( this.stack );
[8def349]252}
253
[e3fea42]254void ?{}(cluster & this, const char name[], Duration preemption_rate) with( this ) {
[de6319f]255 this.name = name;
256 this.preemption_rate = preemption_rate;
[65deb18]257 ready_queue{};
258 ready_queue_lock{};
[de94a60]259
260 procs{ __get };
261 idles{ __get };
[a1a17a74]262 threads{ __get };
[de94a60]263
[92976d9]264 __kernel_io_startup( this );
265
[de94a60]266 doregister(this);
[8def349]267}
268
[242a902]269void ^?{}(cluster & this) {
[92976d9]270 __kernel_io_shutdown( this );
271
[de94a60]272 unregister(this);
[c84e80a]273}
274
[75f3522]275//=============================================================================================
276// Kernel Scheduling logic
277//=============================================================================================
[8fcbb4c]278//Main of the processor contexts
[83a071f9]279void main(processorCtx_t & runner) {
[21184e3]280 // Because of a bug, we couldn't initialized the seed on construction
281 // Do it here
[57c764c4]282 kernelTLS.rand_seed ^= rdtscl();
[21184e3]283
[83a071f9]284 processor * this = runner.proc;
[094476d]285 verify(this);
[c81ebf9]286
[36982fc]287 __cfaabi_dbg_print_safe("Kernel : core %p starting\n", this);
[8118303]288
[de94a60]289 doregister(this->cltr, this);
290
[75f3522]291 {
[c81ebf9]292 // Setup preemption data
293 preemption_scope scope = { this };
294
[36982fc]295 __cfaabi_dbg_print_safe("Kernel : core %p started\n", this);
[8118303]296
[ac2b598]297 $thread * readyThread = 0p;
[1a3040c]298 for( unsigned int spin_count = 0; ! __atomic_load_n(&this->do_terminate, __ATOMIC_SEQ_CST); spin_count++ ) {
[92e7631]299 // Try to get the next thread
[8c50aed]300 readyThread = __next_thread( this->cltr );
[75f3522]301
[92e7631]302 // If no ready thread
303 if( readyThread == 0p ) {
304 // Block until a thread is ready
305 readyThread = __halt(this);
306 }
307
308 // Check if we actually found a thread
309 if( readyThread ) {
[3381ed7]310 /* paranoid */ verify( ! kernelTLS.preemption_state.enabled );
[92e7631]311 /* paranoid */ verifyf( readyThread->state == Ready || readyThread->preempted != __NO_PREEMPTION, "state : %d, preempted %d\n", readyThread->state, readyThread->preempted);
[3381ed7]312 /* paranoid */ verifyf( readyThread->next == 0p, "Expected null got %p", readyThread->next );
[4e6fb8e]313
[92e7631]314 // We found a thread run it
[8c50aed]315 __run_thread(this, readyThread);
[75f3522]316
[3381ed7]317 /* paranoid */ verify( ! kernelTLS.preemption_state.enabled );
[c81ebf9]318 }
319 }
320
[36982fc]321 __cfaabi_dbg_print_safe("Kernel : core %p stopping\n", this);
[c84e80a]322 }
[8118303]323
[de94a60]324 unregister(this->cltr, this);
325
[92e7631]326 V( this->terminated );
[bdeba0b]327
[36982fc]328 __cfaabi_dbg_print_safe("Kernel : core %p terminated\n", this);
[92e7631]329
330 // HACK : the coroutine context switch expects this_thread to be set
331 // and it make sense for it to be set in all other cases except here
332 // fake it
333 if( this == mainProcessor ) kernelTLS.this_thread = mainThread;
[c84e80a]334}
335
[5c1a531]336static int * __volatile_errno() __attribute__((noinline));
337static int * __volatile_errno() { asm(""); return &errno; }
338
[14a61b5]339// KERNEL ONLY
[1c273d0]340// runThread runs a thread by context switching
341// from the processor coroutine to the target thread
[ac2b598]342static void __run_thread(processor * this, $thread * thrd_dst) {
343 $coroutine * proc_cor = get_coroutine(this->runner);
[1c273d0]344
[14a61b5]345 // Update global state
[e8e457e]346 kernelTLS.this_thread = thrd_dst;
347
[9f575ea]348 // set state of processor coroutine to inactive
349 verify(proc_cor->state == Active);
[ae7be7a]350 proc_cor->state = Blocked;
[e8e457e]351
[9f575ea]352 // Actually run the thread
[3381ed7]353 RUNNING: while(true) {
[9f575ea]354 if(unlikely(thrd_dst->preempted)) {
[3381ed7]355 thrd_dst->preempted = __NO_PREEMPTION;
[92e7631]356 verify(thrd_dst->state == Active || thrd_dst->state == Rerun);
[9f575ea]357 } else {
[92e7631]358 verify(thrd_dst->state == Blocked || thrd_dst->state == Ready); // Ready means scheduled normally, blocked means rerun
[9f575ea]359 thrd_dst->state = Active;
360 }
361
[ae66348]362 __cfaabi_dbg_debug_do(
[276ae57e]363 thrd_dst->park_stale = true;
364 thrd_dst->unpark_stale = true;
[ae66348]365 )
366
[3381ed7]367 /* paranoid */ verify( ! kernelTLS.preemption_state.enabled );
[210b8b3]368 /* paranoid */ verifyf( ((uintptr_t)thrd_dst->context.SP) < ((uintptr_t)__get_stack(thrd_dst->curr_cor)->base ) || thrd_dst->curr_cor == proc_cor, "ERROR : Destination $thread %p has been corrupted.\n StackPointer too small.\n", thrd_dst ); // add escape condition if we are setting up the processor
369 /* paranoid */ verifyf( ((uintptr_t)thrd_dst->context.SP) > ((uintptr_t)__get_stack(thrd_dst->curr_cor)->limit) || thrd_dst->curr_cor == proc_cor, "ERROR : Destination $thread %p has been corrupted.\n StackPointer too large.\n", thrd_dst ); // add escape condition if we are setting up the processor
[3381ed7]370
[9f575ea]371 // set context switch to the thread that the processor is executing
372 verify( thrd_dst->context.SP );
[c7a900a]373 __cfactx_switch( &proc_cor->context, &thrd_dst->context );
374 // when __cfactx_switch returns we are back in the processor coroutine
[9f575ea]375
[210b8b3]376 /* paranoid */ verifyf( ((uintptr_t)thrd_dst->context.SP) > ((uintptr_t)__get_stack(thrd_dst->curr_cor)->limit), "ERROR : Destination $thread %p has been corrupted.\n StackPointer too large.\n", thrd_dst );
377 /* paranoid */ verifyf( ((uintptr_t)thrd_dst->context.SP) < ((uintptr_t)__get_stack(thrd_dst->curr_cor)->base ), "ERROR : Destination $thread %p has been corrupted.\n StackPointer too small.\n", thrd_dst );
[3381ed7]378 /* paranoid */ verify( ! kernelTLS.preemption_state.enabled );
[75f3522]379
[3381ed7]380
381 // We just finished running a thread, there are a few things that could have happened.
382 // 1 - Regular case : the thread has blocked and now one has scheduled it yet.
383 // 2 - Racy case : the thread has blocked but someone has already tried to schedule it.
384 // 4 - Preempted
385 // In case 1, we may have won a race so we can't write to the state again.
386 // In case 2, we lost the race so we now own the thread.
387
388 if(unlikely(thrd_dst->preempted != __NO_PREEMPTION)) {
389 // The thread was preempted, reschedule it and reset the flag
[8c50aed]390 __schedule_thread( thrd_dst );
[3381ed7]391 break RUNNING;
392 }
393
394 // set state of processor coroutine to active and the thread to inactive
395 static_assert(sizeof(thrd_dst->state) == sizeof(int));
[ae7be7a]396 enum coroutine_state old_state = __atomic_exchange_n(&thrd_dst->state, Blocked, __ATOMIC_SEQ_CST);
397 __cfaabi_dbg_debug_do( thrd_dst->park_result = old_state; )
[3381ed7]398 switch(old_state) {
399 case Halted:
400 // The thread has halted, it should never be scheduled/run again, leave it back to Halted and move on
401 thrd_dst->state = Halted;
[b0c7419]402
403 // We may need to wake someone up here since
[ae66348]404 unpark( this->destroyer __cfaabi_dbg_ctx2 );
[b0c7419]405 this->destroyer = 0p;
[3381ed7]406 break RUNNING;
407 case Active:
408 // This is case 1, the regular case, nothing more is needed
409 break RUNNING;
410 case Rerun:
411 // This is case 2, the racy case, someone tried to run this thread before it finished blocking
412 // In this case, just run it again.
413 continue RUNNING;
414 default:
415 // This makes no sense, something is wrong abort
[ae7be7a]416 abort("Finished running a thread that was Blocked/Start/Primed %d\n", old_state);
[3381ed7]417 }
[9f575ea]418 }
419
420 // Just before returning to the processor, set the processor coroutine to active
[e8e457e]421 proc_cor->state = Active;
[ae7be7a]422 kernelTLS.this_thread = 0p;
[75f3522]423}
424
[14a61b5]425// KERNEL_ONLY
[b0c7419]426void returnToKernel() {
[3381ed7]427 /* paranoid */ verify( ! kernelTLS.preemption_state.enabled );
[ac2b598]428 $coroutine * proc_cor = get_coroutine(kernelTLS.this_processor->runner);
429 $thread * thrd_src = kernelTLS.this_thread;
[e8e457e]430
[9f575ea]431 // Run the thread on this processor
432 {
433 int local_errno = *__volatile_errno();
434 #if defined( __i386 ) || defined( __x86_64 )
435 __x87_store;
436 #endif
437 verify( proc_cor->context.SP );
[c7a900a]438 __cfactx_switch( &thrd_src->context, &proc_cor->context );
[9f575ea]439 #if defined( __i386 ) || defined( __x86_64 )
440 __x87_load;
441 #endif
442 *__volatile_errno() = local_errno;
443 }
[deca0f5]444
[3381ed7]445 /* paranoid */ verify( ! kernelTLS.preemption_state.enabled );
[210b8b3]446 /* paranoid */ verifyf( ((uintptr_t)thrd_src->context.SP) < ((uintptr_t)__get_stack(thrd_src->curr_cor)->base ), "ERROR : Returning $thread %p has been corrupted.\n StackPointer too small.\n", thrd_src );
447 /* paranoid */ verifyf( ((uintptr_t)thrd_src->context.SP) > ((uintptr_t)__get_stack(thrd_src->curr_cor)->limit), "ERROR : Returning $thread %p has been corrupted.\n StackPointer too large.\n", thrd_src );
[c84e80a]448}
449
[14a61b5]450// KERNEL_ONLY
[0c92c9f]451// Context invoker for processors
452// This is the entry point for processors (kernel threads)
453// It effectively constructs a coroutine by stealing the pthread stack
[c7a900a]454static void * __invoke_processor(void * arg) {
[8def349]455 processor * proc = (processor *) arg;
[14a61b5]456 kernelTLS.this_processor = proc;
[1805b1b]457 kernelTLS.this_thread = 0p;
[14a61b5]458 kernelTLS.preemption_state.[enabled, disable_count] = [false, 1];
[8def349]459 // SKULLDUGGERY: We want to create a context for the processor coroutine
460 // which is needed for the 2-step context switch. However, there is no reason
[1c273d0]461 // to waste the perfectly valid stack create by pthread.
[8def349]462 current_stack_info_t info;
[b2f6113]463 __stack_t ctx;
464 info.storage = &ctx;
[094476d]465 (proc->runner){ proc, &info };
[8def349]466
[b2f6113]467 __cfaabi_dbg_print_safe("Coroutine : created stack %p\n", get_coroutine(proc->runner)->stack.storage);
[8fcbb4c]468
[0c92c9f]469 //Set global state
[1805b1b]470 kernelTLS.this_thread = 0p;
[8def349]471
472 //We now have a proper context from which to schedule threads
[094476d]473 __cfaabi_dbg_print_safe("Kernel : core %p created (%p, %p)\n", proc, &proc->runner, &ctx);
[8def349]474
[1c273d0]475 // SKULLDUGGERY: Since the coroutine doesn't have its own stack, we can't
476 // resume it to start it like it normally would, it will just context switch
477 // back to here. Instead directly call the main since we already are on the
[8def349]478 // appropriate stack.
[094476d]479 get_coroutine(proc->runner)->state = Active;
480 main( proc->runner );
481 get_coroutine(proc->runner)->state = Halted;
[8def349]482
[0c92c9f]483 // Main routine of the core returned, the core is now fully terminated
[094476d]484 __cfaabi_dbg_print_safe("Kernel : core %p main ended (%p)\n", proc, &proc->runner);
[8def349]485
[1805b1b]486 return 0p;
[c84e80a]487}
488
[e3fea42]489static void Abort( int ret, const char func[] ) {
[1a3040c]490 if ( ret ) { // pthread routines return errno values
[1805b1b]491 abort( "%s : internal error, error(%d) %s.", func, ret, strerror( ret ) );
[27f5f71]492 } // if
[1805b1b]493} // Abort
494
[8c50aed]495void * __create_pthread( pthread_t * pthread, void * (*start)(void *), void * arg ) {
[1805b1b]496 pthread_attr_t attr;
497
498 Abort( pthread_attr_init( &attr ), "pthread_attr_init" ); // initialize attribute
499
[27f5f71]500 size_t stacksize;
[09d4b22]501 // default stack size, normally defined by shell limit
[1a3040c]502 Abort( pthread_attr_getstacksize( &attr, &stacksize ), "pthread_attr_getstacksize" );
[27f5f71]503 assert( stacksize >= PTHREAD_STACK_MIN );
[1a3040c]504
[09d4b22]505 void * stack;
506 __cfaabi_dbg_debug_do(
507 stack = memalign( __page_size, stacksize + __page_size );
508 // pthread has no mechanism to create the guard page in user supplied stack.
509 if ( mprotect( stack, __page_size, PROT_NONE ) == -1 ) {
510 abort( "mprotect : internal error, mprotect failure, error(%d) %s.", errno, strerror( errno ) );
511 } // if
512 );
513 __cfaabi_dbg_no_debug_do(
514 stack = malloc( stacksize );
515 );
[1a3040c]516
[09f357ec]517 Abort( pthread_attr_setstack( &attr, stack, stacksize ), "pthread_attr_setstack" );
[27f5f71]518
[1805b1b]519 Abort( pthread_create( pthread, &attr, start, arg ), "pthread_create" );
520 return stack;
521}
[27f5f71]522
[14a61b5]523// KERNEL_ONLY
[8c50aed]524static void __kernel_first_resume( processor * this ) {
[ac2b598]525 $thread * src = mainThread;
526 $coroutine * dst = get_coroutine(this->runner);
[b69ea6b]527
[14a61b5]528 verify( ! kernelTLS.preemption_state.enabled );
[b69ea6b]529
[09f357ec]530 kernelTLS.this_thread->curr_cor = dst;
[b2f6113]531 __stack_prepare( &dst->stack, 65000 );
[c7a900a]532 __cfactx_start(main, dst, this->runner, __cfactx_invoke_coroutine);
[b69ea6b]533
[14a61b5]534 verify( ! kernelTLS.preemption_state.enabled );
[b69ea6b]535
[e8e457e]536 dst->last = &src->self_cor;
537 dst->starter = dst->starter ? dst->starter : &src->self_cor;
[b69ea6b]538
[92e7631]539 // make sure the current state is still correct
540 /* paranoid */ verify(src->state == Ready);
[b69ea6b]541
542 // context switch to specified coroutine
[69a61d2]543 verify( dst->context.SP );
[c7a900a]544 __cfactx_switch( &src->context, &dst->context );
545 // when __cfactx_switch returns we are back in the src coroutine
[b69ea6b]546
[09f357ec]547 mainThread->curr_cor = &mainThread->self_cor;
548
[92e7631]549 // make sure the current state has been update
550 /* paranoid */ verify(src->state == Active);
[b69ea6b]551
[14a61b5]552 verify( ! kernelTLS.preemption_state.enabled );
[b69ea6b]553}
554
[e8e457e]555// KERNEL_ONLY
[8c50aed]556static void __kernel_last_resume( processor * this ) {
[ac2b598]557 $coroutine * src = &mainThread->self_cor;
558 $coroutine * dst = get_coroutine(this->runner);
[e8e457e]559
560 verify( ! kernelTLS.preemption_state.enabled );
561 verify( dst->starter == src );
562 verify( dst->context.SP );
563
[f586539]564 // SKULLDUGGERY in debug the processors check that the
565 // stack is still within the limit of the stack limits after running a thread.
566 // that check doesn't make sense if we context switch to the processor using the
567 // coroutine semantics. Since this is a special case, use the current context
568 // info to populate these fields.
569 __cfaabi_dbg_debug_do(
570 __stack_context_t ctx;
571 CtxGet( ctx );
572 mainThread->context.SP = ctx.SP;
573 mainThread->context.FP = ctx.FP;
574 )
575
[e8e457e]576 // context switch to the processor
[c7a900a]577 __cfactx_switch( &src->context, &dst->context );
[e8e457e]578}
579
[8def349]580//-----------------------------------------------------------------------------
581// Scheduler routines
[14a61b5]582// KERNEL ONLY
[ac2b598]583void __schedule_thread( $thread * thrd ) with( *thrd->curr_cluster ) {
[9f575ea]584 /* paranoid */ verify( ! kernelTLS.preemption_state.enabled );
[3381ed7]585 /* paranoid */ #if defined( __CFA_WITH_VERIFY__ )
[ae7be7a]586 /* paranoid */ if( thrd->state == Blocked || thrd->state == Start ) assertf( thrd->preempted == __NO_PREEMPTION,
[3381ed7]587 "Error inactive thread marked as preempted, state %d, preemption %d\n", thrd->state, thrd->preempted );
[b0c7419]588 /* paranoid */ if( thrd->preempted != __NO_PREEMPTION ) assertf(thrd->state == Active || thrd->state == Rerun,
[3381ed7]589 "Error preempted thread marked as not currently running, state %d, preemption %d\n", thrd->state, thrd->preempted );
590 /* paranoid */ #endif
[9f575ea]591 /* paranoid */ verifyf( thrd->next == 0p, "Expected null got %p", thrd->next );
592
[ae7be7a]593 if (thrd->preempted == __NO_PREEMPTION) thrd->state = Ready;
594
[9f575ea]595 lock ( ready_queue_lock __cfaabi_dbg_ctx2 );
596 bool was_empty = !(ready_queue != 0);
597 append( ready_queue, thrd );
598 unlock( ready_queue_lock );
[6b4cdd3]599
[92e7631]600 __wake_one(thrd->curr_cluster, was_empty);
[1c273d0]601
[9f575ea]602 /* paranoid */ verify( ! kernelTLS.preemption_state.enabled );
[db6f06a]603}
604
[14a61b5]605// KERNEL ONLY
[ac2b598]606static $thread * __next_thread(cluster * this) with( *this ) {
[3381ed7]607 /* paranoid */ verify( ! kernelTLS.preemption_state.enabled );
608
[65deb18]609 lock( ready_queue_lock __cfaabi_dbg_ctx2 );
[ac2b598]610 $thread * head = pop_head( ready_queue );
[65deb18]611 unlock( ready_queue_lock );
[eb2e723]612
[3381ed7]613 /* paranoid */ verify( ! kernelTLS.preemption_state.enabled );
614 return head;
[75f3522]615}
616
[2d8f7b0]617// KERNEL ONLY unpark with out disabling interrupts
618void __unpark( $thread * thrd __cfaabi_dbg_ctx_param2 ) {
[3381ed7]619 static_assert(sizeof(thrd->state) == sizeof(int));
[ae7be7a]620
[ae66348]621 // record activity
622 __cfaabi_dbg_record_thrd( *thrd, false, caller );
623
[b0c7419]624 enum coroutine_state old_state = __atomic_exchange_n(&thrd->state, Rerun, __ATOMIC_SEQ_CST);
[ae7be7a]625 __cfaabi_dbg_debug_do( thrd->unpark_result = old_state; )
[3381ed7]626 switch(old_state) {
627 case Active:
628 // Wake won the race, the thread will reschedule/rerun itself
629 break;
[ae7be7a]630 case Blocked:
[3381ed7]631 /* paranoid */ verify( ! thrd->preempted != __NO_PREEMPTION );
[0b33412]632
[3381ed7]633 // Wake lost the race,
[ae7be7a]634 thrd->state = Blocked;
[8c50aed]635 __schedule_thread( thrd );
[3381ed7]636 break;
637 case Rerun:
638 abort("More than one thread attempted to schedule thread %p\n", thrd);
639 break;
640 case Halted:
641 case Start:
642 case Primed:
643 default:
644 // This makes no sense, something is wrong abort
645 abort();
646 }
[2d8f7b0]647}
648
649void unpark( $thread * thrd __cfaabi_dbg_ctx_param2 ) {
650 if( !thrd ) return;
651
652 disable_interrupts();
653 __unpark( thrd __cfaabi_dbg_ctx_fwd2 );
[36982fc]654 enable_interrupts( __cfaabi_dbg_ctx );
[db6f06a]655}
656
[ae66348]657void park( __cfaabi_dbg_ctx_param ) {
[3381ed7]658 /* paranoid */ verify( kernelTLS.preemption_state.enabled );
[82ff5845]659 disable_interrupts();
[3381ed7]660 /* paranoid */ verify( ! kernelTLS.preemption_state.enabled );
661 /* paranoid */ verify( kernelTLS.this_thread->preempted == __NO_PREEMPTION );
[0b33412]662
[ae66348]663 // record activity
664 __cfaabi_dbg_record_thrd( *kernelTLS.this_thread, true, caller );
665
[82c948c]666 returnToKernel();
[0b33412]667
[3381ed7]668 /* paranoid */ verify( ! kernelTLS.preemption_state.enabled );
[36982fc]669 enable_interrupts( __cfaabi_dbg_ctx );
[3381ed7]670 /* paranoid */ verify( kernelTLS.preemption_state.enabled );
[eb2e723]671
[0c78741]672}
673
[3381ed7]674// KERNEL ONLY
[b0c7419]675void __leave_thread() {
[3381ed7]676 /* paranoid */ verify( ! kernelTLS.preemption_state.enabled );
[82c948c]677 returnToKernel();
[b0c7419]678 abort();
[0c78741]679}
680
[3381ed7]681// KERNEL ONLY
682bool force_yield( __Preemption_Reason reason ) {
683 /* paranoid */ verify( kernelTLS.preemption_state.enabled );
[09800e9]684 disable_interrupts();
[3381ed7]685 /* paranoid */ verify( ! kernelTLS.preemption_state.enabled );
[09800e9]686
[ac2b598]687 $thread * thrd = kernelTLS.this_thread;
[b0c7419]688 /* paranoid */ verify(thrd->state == Active || thrd->state == Rerun);
[3381ed7]689
690 // SKULLDUGGERY: It is possible that we are preempting this thread just before
691 // it was going to park itself. If that is the case and it is already using the
692 // intrusive fields then we can't use them to preempt the thread
693 // If that is the case, abandon the preemption.
694 bool preempted = false;
695 if(thrd->next == 0p) {
696 preempted = true;
697 thrd->preempted = reason;
698 returnToKernel();
699 }
[09800e9]700
[3381ed7]701 /* paranoid */ verify( ! kernelTLS.preemption_state.enabled );
702 enable_interrupts_noPoll();
703 /* paranoid */ verify( kernelTLS.preemption_state.enabled );
[f2b12406]704
[3381ed7]705 return preempted;
[f2b12406]706}
707
[fa21ac9]708//=============================================================================================
709// Kernel Setup logic
710//=============================================================================================
[eb2e723]711//-----------------------------------------------------------------------------
712// Kernel boot procedures
[8c50aed]713static void __kernel_startup(void) {
[14a61b5]714 verify( ! kernelTLS.preemption_state.enabled );
[36982fc]715 __cfaabi_dbg_print_safe("Kernel : Starting\n");
[eb2e723]716
[b2f6113]717 __page_size = sysconf( _SC_PAGESIZE );
718
[ea8b2f7]719 __cfa_dbg_global_clusters.list{ __get };
720 __cfa_dbg_global_clusters.lock{};
[de94a60]721
[de6319f]722 // Initialize the main cluster
723 mainCluster = (cluster *)&storage_mainCluster;
724 (*mainCluster){"Main Cluster"};
725
726 __cfaabi_dbg_print_safe("Kernel : Main cluster ready\n");
727
[eb2e723]728 // Start by initializing the main thread
[1c273d0]729 // SKULLDUGGERY: the mainThread steals the process main thread
[969b3fe]730 // which will then be scheduled by the mainProcessor normally
[ac2b598]731 mainThread = ($thread *)&storage_mainThread;
[8fcbb4c]732 current_stack_info_t info;
[b2f6113]733 info.storage = (__stack_t*)&storage_mainThreadCtx;
[83a071f9]734 (*mainThread){ &info };
[eb2e723]735
[36982fc]736 __cfaabi_dbg_print_safe("Kernel : Main thread ready\n");
[fa21ac9]737
[bd98b58]738
[de6319f]739
740 // Construct the processor context of the main processor
741 void ?{}(processorCtx_t & this, processor * proc) {
742 (this.__cor){ "Processor" };
[1805b1b]743 this.__cor.starter = 0p;
[de6319f]744 this.proc = proc;
745 }
746
747 void ?{}(processor & this) with( this ) {
748 name = "Main Processor";
749 cltr = mainCluster;
750 terminated{ 0 };
751 do_terminate = false;
[1805b1b]752 preemption_alarm = 0p;
[de6319f]753 pending_preemption = false;
754 kernel_thread = pthread_self();
755
756 runner{ &this };
757 __cfaabi_dbg_print_safe("Kernel : constructed main processor context %p\n", &runner);
758 }
[fa21ac9]759
[969b3fe]760 // Initialize the main processor and the main processor ctx
[eb2e723]761 // (the coroutine that contains the processing control flow)
[969b3fe]762 mainProcessor = (processor *)&storage_mainProcessor;
[de6319f]763 (*mainProcessor){};
[eb2e723]764
[dcb42b8]765 //initialize the global state variables
[14a61b5]766 kernelTLS.this_processor = mainProcessor;
767 kernelTLS.this_thread = mainThread;
[eb2e723]768
[82ff5845]769 // Enable preemption
770 kernel_start_preemption();
771
[969b3fe]772 // Add the main thread to the ready queue
773 // once resume is called on mainProcessor->runner the mainThread needs to be scheduled like any normal thread
[8c50aed]774 __schedule_thread(mainThread);
[969b3fe]775
776 // SKULLDUGGERY: Force a context switch to the main processor to set the main thread's context to the current UNIX
[c7a900a]777 // context. Hence, the main thread does not begin through __cfactx_invoke_thread, like all other threads. The trick here is that
[1c273d0]778 // mainThread is on the ready queue when this call is made.
[8c50aed]779 __kernel_first_resume( kernelTLS.this_processor );
[eb2e723]780
[dcb42b8]781
782
783 // THE SYSTEM IS NOW COMPLETELY RUNNING
[36982fc]784 __cfaabi_dbg_print_safe("Kernel : Started\n--------------------------------------------------\n\n");
[82ff5845]785
[14a61b5]786 verify( ! kernelTLS.preemption_state.enabled );
[36982fc]787 enable_interrupts( __cfaabi_dbg_ctx );
[afd550c]788 verify( TL_GET( preemption_state.enabled ) );
[eb2e723]789}
790
[8c50aed]791static void __kernel_shutdown(void) {
[36982fc]792 __cfaabi_dbg_print_safe("\n--------------------------------------------------\nKernel : Shutting down\n");
[eb2e723]793
[92e7631]794 /* paranoid */ verify( TL_GET( preemption_state.enabled ) );
[4e6fb8e]795 disable_interrupts();
[92e7631]796 /* paranoid */ verify( ! kernelTLS.preemption_state.enabled );
[4e6fb8e]797
[969b3fe]798 // SKULLDUGGERY: Notify the mainProcessor it needs to terminates.
[dcb42b8]799 // When its coroutine terminates, it return control to the mainThread
800 // which is currently here
[ea8b2f7]801 __atomic_store_n(&mainProcessor->do_terminate, true, __ATOMIC_RELEASE);
[8c50aed]802 __kernel_last_resume( kernelTLS.this_processor );
[ea8b2f7]803 mainThread->self_cor.state = Halted;
[eb2e723]804
[dcb42b8]805 // THE SYSTEM IS NOW COMPLETELY STOPPED
[eb2e723]806
[82ff5845]807 // Disable preemption
808 kernel_stop_preemption();
809
[969b3fe]810 // Destroy the main processor and its context in reverse order of construction
[dcb42b8]811 // These were manually constructed so we need manually destroy them
[210b8b3]812 ^(*mainProcessor){};
[eb2e723]813
[dcb42b8]814 // Final step, destroy the main thread since it is no longer needed
815 // Since we provided a stack to this taxk it will not destroy anything
[210b8b3]816 /* paranoid */ verify(mainThread->self_cor.stack.storage == (__stack_t*)(((uintptr_t)&storage_mainThreadCtx)| 0x1));
817 ^(*mainThread){};
[eb2e723]818
[92976d9]819 ^(*mainCluster){};
820
[ea8b2f7]821 ^(__cfa_dbg_global_clusters.list){};
822 ^(__cfa_dbg_global_clusters.lock){};
[a1a17a74]823
[36982fc]824 __cfaabi_dbg_print_safe("Kernel : Shutdown complete\n");
[9d944b2]825}
826
[14a61b5]827//=============================================================================================
[92e7631]828// Kernel Idle Sleep
[14a61b5]829//=============================================================================================
[92e7631]830static $thread * __halt(processor * this) with( *this ) {
831 if( do_terminate ) return 0p;
[ea8b2f7]832
[92e7631]833 // First, lock the cluster idle
834 lock( cltr->idle_lock __cfaabi_dbg_ctx2 );
835
836 // Check if we can find a thread
837 if( $thread * found = __next_thread( cltr ) ) {
838 unlock( cltr->idle_lock );
839 return found;
[6b4cdd3]840 }
[14a61b5]841
[92e7631]842 // Move this processor from the active list to the idle list
843 move_to_front(cltr->procs, cltr->idles, *this);
[14a61b5]844
[92e7631]845 // Unlock the idle lock so we don't go to sleep with a lock
846 unlock (cltr->idle_lock);
847
848 // We are ready to sleep
849 __cfaabi_dbg_print_safe("Kernel : Processor %p ready to sleep\n", this);
850 wait( idle );
[14a61b5]851
[92e7631]852 // We have woken up
[6b4cdd3]853 __cfaabi_dbg_print_safe("Kernel : Processor %p woke up and ready to run\n", this);
[14a61b5]854
[92e7631]855 // Get ourself off the idle list
[6b4cdd3]856 with( *cltr ) {
[92e7631]857 lock (idle_lock __cfaabi_dbg_ctx2);
858 move_to_front(idles, procs, *this);
859 unlock(idle_lock);
[6b4cdd3]860 }
[92e7631]861
862 // Don't check the ready queue again, we may not be in a position to run a thread
863 return 0p;
864}
865
866// Wake a thread from the front if there are any
867static bool __wake_one(cluster * this, __attribute__((unused)) bool force) {
868 // if we don't want to force check if we know it's false
869 if( !this->idles.head && !force ) return false;
870
871 // First, lock the cluster idle
872 lock( this->idle_lock __cfaabi_dbg_ctx2 );
873
874 // Check if there is someone to wake up
875 if( !this->idles.head ) {
876 // Nope unlock and return false
877 unlock( this->idle_lock );
878 return false;
879 }
880
881 // Wake them up
882 post( this->idles.head->idle );
883
884 // Unlock and return true
885 unlock( this->idle_lock );
886 return true;
887}
888
889// Unconditionnaly wake a thread
890static bool __wake_proc(processor * this) {
891 return post( this->idle );
[6b4cdd3]892}
893
[dbe9b08]894//=============================================================================================
895// Unexpected Terminating logic
896//=============================================================================================
[ea7d2b0]897static __spinlock_t kernel_abort_lock;
[9d944b2]898static bool kernel_abort_called = false;
899
[afd550c]900void * kernel_abort(void) __attribute__ ((__nothrow__)) {
[9d944b2]901 // abort cannot be recursively entered by the same or different processors because all signal handlers return when
902 // the globalAbort flag is true.
[36982fc]903 lock( kernel_abort_lock __cfaabi_dbg_ctx2 );
[9d944b2]904
905 // first task to abort ?
[de94a60]906 if ( kernel_abort_called ) { // not first task to abort ?
[ea7d2b0]907 unlock( kernel_abort_lock );
[1c273d0]908
[9d944b2]909 sigset_t mask;
910 sigemptyset( &mask );
[de94a60]911 sigaddset( &mask, SIGALRM ); // block SIGALRM signals
[8a13c47]912 sigaddset( &mask, SIGUSR1 ); // block SIGALRM signals
913 sigsuspend( &mask ); // block the processor to prevent further damage during abort
914 _exit( EXIT_FAILURE ); // if processor unblocks before it is killed, terminate it
[de94a60]915 }
916 else {
917 kernel_abort_called = true;
918 unlock( kernel_abort_lock );
[9d944b2]919 }
920
[14a61b5]921 return kernelTLS.this_thread;
[9d944b2]922}
923
924void kernel_abort_msg( void * kernel_data, char * abort_text, int abort_text_size ) {
[ac2b598]925 $thread * thrd = kernel_data;
[9d944b2]926
[de94a60]927 if(thrd) {
928 int len = snprintf( abort_text, abort_text_size, "Error occurred while executing thread %.256s (%p)", thrd->self_cor.name, thrd );
[1c40091]929 __cfaabi_bits_write( STDERR_FILENO, abort_text, len );
[de94a60]930
[212c2187]931 if ( &thrd->self_cor != thrd->curr_cor ) {
932 len = snprintf( abort_text, abort_text_size, " in coroutine %.256s (%p).\n", thrd->curr_cor->name, thrd->curr_cor );
[1c40091]933 __cfaabi_bits_write( STDERR_FILENO, abort_text, len );
[de94a60]934 }
935 else {
[1c40091]936 __cfaabi_bits_write( STDERR_FILENO, ".\n", 2 );
[de94a60]937 }
[1c273d0]938 }
[9d944b2]939 else {
[de94a60]940 int len = snprintf( abort_text, abort_text_size, "Error occurred outside of any thread.\n" );
[1c40091]941 __cfaabi_bits_write( STDERR_FILENO, abort_text, len );
[9d944b2]942 }
943}
944
[2b8bc41]945int kernel_abort_lastframe( void ) __attribute__ ((__nothrow__)) {
[14a61b5]946 return get_coroutine(kernelTLS.this_thread) == get_coroutine(mainThread) ? 4 : 2;
[2b8bc41]947}
948
[de94a60]949static __spinlock_t kernel_debug_lock;
950
[9d944b2]951extern "C" {
[1c40091]952 void __cfaabi_bits_acquire() {
[36982fc]953 lock( kernel_debug_lock __cfaabi_dbg_ctx2 );
[9d944b2]954 }
955
[1c40091]956 void __cfaabi_bits_release() {
[ea7d2b0]957 unlock( kernel_debug_lock );
[9d944b2]958 }
[8118303]959}
960
[fa21ac9]961//=============================================================================================
962// Kernel Utilities
963//=============================================================================================
[bd98b58]964//-----------------------------------------------------------------------------
965// Locks
[242a902]966void ?{}( semaphore & this, int count = 1 ) {
967 (this.lock){};
968 this.count = count;
969 (this.waiting){};
[db6f06a]970}
[242a902]971void ^?{}(semaphore & this) {}
[db6f06a]972
[65deb18]973void P(semaphore & this) with( this ){
974 lock( lock __cfaabi_dbg_ctx2 );
975 count -= 1;
976 if ( count < 0 ) {
[bdeba0b]977 // queue current task
[14a61b5]978 append( waiting, kernelTLS.this_thread );
[bdeba0b]979
980 // atomically release spin lock and block
[3381ed7]981 unlock( lock );
[ae66348]982 park( __cfaabi_dbg_ctx );
[8def349]983 }
[4e6fb8e]984 else {
[65deb18]985 unlock( lock );
[4e6fb8e]986 }
[bd98b58]987}
988
[f0ce5f4]989bool V(semaphore & this) with( this ) {
[ac2b598]990 $thread * thrd = 0p;
[65deb18]991 lock( lock __cfaabi_dbg_ctx2 );
992 count += 1;
993 if ( count <= 0 ) {
[bdeba0b]994 // remove task at head of waiting list
[65deb18]995 thrd = pop_head( waiting );
[bd98b58]996 }
[bdeba0b]997
[65deb18]998 unlock( lock );
[bdeba0b]999
1000 // make new owner
[ae66348]1001 unpark( thrd __cfaabi_dbg_ctx2 );
[f0ce5f4]1002
1003 return thrd != 0p;
[bd98b58]1004}
1005
[f7d6bb0]1006//-----------------------------------------------------------------------------
[de94a60]1007// Global Queues
1008void doregister( cluster & cltr ) {
[ea8b2f7]1009 lock ( __cfa_dbg_global_clusters.lock __cfaabi_dbg_ctx2);
1010 push_front( __cfa_dbg_global_clusters.list, cltr );
1011 unlock ( __cfa_dbg_global_clusters.lock );
[de94a60]1012}
[f7d6bb0]1013
[de94a60]1014void unregister( cluster & cltr ) {
[ea8b2f7]1015 lock ( __cfa_dbg_global_clusters.lock __cfaabi_dbg_ctx2);
1016 remove( __cfa_dbg_global_clusters.list, cltr );
1017 unlock( __cfa_dbg_global_clusters.lock );
[de94a60]1018}
[f7d6bb0]1019
[ac2b598]1020void doregister( cluster * cltr, $thread & thrd ) {
[a1a17a74]1021 lock (cltr->thread_list_lock __cfaabi_dbg_ctx2);
[d4e68a6]1022 cltr->nthreads += 1;
[a1a17a74]1023 push_front(cltr->threads, thrd);
1024 unlock (cltr->thread_list_lock);
1025}
1026
[ac2b598]1027void unregister( cluster * cltr, $thread & thrd ) {
[a1a17a74]1028 lock (cltr->thread_list_lock __cfaabi_dbg_ctx2);
1029 remove(cltr->threads, thrd );
[d4e68a6]1030 cltr->nthreads -= 1;
[a1a17a74]1031 unlock(cltr->thread_list_lock);
1032}
[9181f1d]1033
[de94a60]1034void doregister( cluster * cltr, processor * proc ) {
[92e7631]1035 lock (cltr->idle_lock __cfaabi_dbg_ctx2);
[d4e68a6]1036 cltr->nprocessors += 1;
[639991a]1037 push_front(cltr->procs, *proc);
[92e7631]1038 unlock (cltr->idle_lock);
[de94a60]1039}
1040
1041void unregister( cluster * cltr, processor * proc ) {
[92e7631]1042 lock (cltr->idle_lock __cfaabi_dbg_ctx2);
[639991a]1043 remove(cltr->procs, *proc );
[d4e68a6]1044 cltr->nprocessors -= 1;
[92e7631]1045 unlock(cltr->idle_lock);
[de94a60]1046}
1047
1048//-----------------------------------------------------------------------------
1049// Debug
1050__cfaabi_dbg_debug_do(
[1997b4e]1051 extern "C" {
[ae66348]1052 void __cfaabi_dbg_record_lock(__spinlock_t & this, const char prev_name[]) {
[1997b4e]1053 this.prev_name = prev_name;
1054 this.prev_thrd = kernelTLS.this_thread;
1055 }
[ae66348]1056
1057 void __cfaabi_dbg_record_thrd($thread & this, bool park, const char prev_name[]) {
1058 if(park) {
[f0ce5f4]1059 this.park_caller = prev_name;
1060 this.park_stale = false;
[ae66348]1061 }
1062 else {
[f0ce5f4]1063 this.unpark_caller = prev_name;
1064 this.unpark_stale = false;
[ae66348]1065 }
1066 }
[9181f1d]1067 }
[f7d6bb0]1068)
[2026bb6]1069
1070//-----------------------------------------------------------------------------
1071// Debug
[8c50aed]1072bool threading_enabled(void) __attribute__((const)) {
[2026bb6]1073 return true;
1074}
[8118303]1075// Local Variables: //
1076// mode: c //
1077// tab-width: 4 //
1078// End: //
Note: See TracBrowser for help on using the repository browser.