Changeset 09d4b22 for libcfa/src/concurrency
- Timestamp:
- Dec 5, 2019, 10:57:06 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- baf608a
- Parents:
- 0030ada3
- Location:
- libcfa/src/concurrency
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/invoke.h
r0030ada3 r09d4b22 10 10 // Created On : Tue Jan 17 12:27:26 2016 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Dec 4 08:05:32201913 // Update Count : 4 312 // Last Modified On : Thu Dec 5 16:26:03 2019 13 // Update Count : 44 14 14 // 15 15 … … 51 51 52 52 struct { 53 void * stack;54 53 volatile unsigned short disable_count; 55 54 volatile bool enabled; -
libcfa/src/concurrency/kernel.cfa
r0030ada3 r09d4b22 10 10 // Created On : Tue Jan 17 12:27:26 2017 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : T ue Dec 3 21:46:54201913 // Update Count : 4912 // Last Modified On : Thu Dec 5 16:25:52 2019 13 // Update Count : 52 14 14 // 15 15 … … 135 135 NULL, // cannot use 0p 136 136 NULL, 137 { NULL,1, false, false },137 { 1, false, false }, 138 138 6u //this should be seeded better but due to a bug calling rdtsc doesn't work 139 139 }; … … 453 453 454 454 size_t stacksize; 455 455 // default stack size, normally defined by shell limit 456 456 Abort( pthread_attr_getstacksize( &attr, &stacksize ), "pthread_attr_getstacksize" ); 457 457 assert( stacksize >= PTHREAD_STACK_MIN ); 458 458 459 #ifdef __CFA_DEBUG__ 460 void * stack = memalign( __page_size, stacksize + __page_size ); 461 // pthread has no mechanism to create the guard page in user supplied stack. 462 if ( mprotect( stack, __page_size, PROT_NONE ) == -1 ) { 463 abort( "mprotect : internal error, mprotect failure, error(%d) %s.", errno, strerror( errno ) ); 464 } // if 465 #else 466 void * stack = malloc( stacksize ); 467 #endif 459 void * stack; 460 __cfaabi_dbg_debug_do( 461 stack = memalign( __page_size, stacksize + __page_size ); 462 // pthread has no mechanism to create the guard page in user supplied stack. 463 if ( mprotect( stack, __page_size, PROT_NONE ) == -1 ) { 464 abort( "mprotect : internal error, mprotect failure, error(%d) %s.", errno, strerror( errno ) ); 465 } // if 466 ); 467 __cfaabi_dbg_no_debug_do( 468 stack = malloc( stacksize ); 469 ); 468 470 469 471 Abort( pthread_attr_setstack( &attr, stack, stacksize ), "pthread_attr_setstack" ); -
libcfa/src/concurrency/preemption.cfa
r0030ada3 r09d4b22 10 10 // Created On : Mon Jun 5 14:20:42 2017 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sun Dec 1 22:22:56201913 // Update Count : 4 112 // Last Modified On : Thu Dec 5 16:34:05 2019 13 // Update Count : 43 14 14 // 15 15 … … 65 65 event_kernel_t * event_kernel; // kernel public handle to even kernel 66 66 static pthread_t alarm_thread; // pthread handle to alarm thread 67 static void * alarm_stack; // pthread stack for alarm thread 67 68 68 69 static void ?{}(event_kernel_t & this) with( this ) { … … 306 307 signal_block( SIGALRM ); 307 308 308 kernelTLS.preemption_state.stack = create_pthread( &alarm_thread, alarm_loop, 0p );309 alarm_stack = create_pthread( &alarm_thread, alarm_loop, 0p ); 309 310 } 310 311 … … 326 327 327 328 pthread_join( alarm_thread, 0p ); 328 free( kernelTLS.preemption_state.stack );329 free( alarm_stack ); 329 330 330 331 // Preemption is now fully stopped
Note: See TracChangeset
for help on using the changeset viewer.