Changeset f03e11d for libcfa/src/concurrency/clib/cfathread.cfa
- Timestamp:
- Mar 15, 2021, 5:30:49 PM (23 months ago)
- Branches:
- arm-eh, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- d0cd933
- Parents:
- 9528767
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/clib/cfathread.cfa
r9528767 rf03e11d 115 115 int cfathread_join( cfathread_t thrd, void ** retval ) { 116 116 void * ret = join( *thrd ).ret; 117 delete( thrd ); 117 ^( *thrd ){}; 118 free(thrd); 118 119 if(retval) { 119 120 *retval = ret; … … 250 251 } 251 252 252 void cfathread_suspendFD(int) { 253 abort | "Suspending File Descriptors is not supported"; 254 } 255 256 void cfathread_resumeFD (int) { 257 abort | "Resuming File Descriptors is not supported"; 258 } 259 260 } 253 }
Note: See TracChangeset
for help on using the changeset viewer.