- Timestamp:
- Sep 30, 2020, 4:44:22 PM (2 years ago)
- Branches:
- arm-eh, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 4e39f51
- Parents:
- d035cf7
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
doc/theses/thierry_delisle_PhD/code/readQ_example/thrdlib/fibre.cpp
rd035cf7 r29185fc 1 #pragma once2 3 1 #include <cassert> 4 2 #include <libfibre/cfibre.h> 5 3 6 #if defined(__cforall) || defined(__cpluplus) 4 typedef cfibre_t thread_t; 5 static_assert(sizeof(thread_t) == sizeof(void*), "thread_t musst be of same size as void*"); 6 7 void * fibre_runner(void * arg) { 8 auto the_main = (void (*)( thread_t ))arg; 9 the_main( cfibre_self() ); 10 return nullptr; 11 } 12 7 13 extern "C" { 8 #endif9 //--------------------10 // Basic types11 typedef cfibre_t thread_t;12 13 void * fibre_runner(void * arg) {14 auto the_main = (void (*)( thread_t ))arg;15 the_main( cfibre_self() );16 return nullptr;17 }18 19 14 //-------------------- 20 15 // Basic thread support … … 51 46 52 47 } 53 54 55 #if defined(__cforall) || defined(__cpluplus)56 48 } 57 #endif
Note: See TracChangeset
for help on using the changeset viewer.