Changeset 0ea1b65 for src/libcfa/concurrency
- Timestamp:
- Mar 15, 2017, 3:48:19 PM (9 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 89a3df5
- Parents:
- 9243cc91 (diff), 4a3334cf (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- src/libcfa/concurrency
- Files:
-
- 2 edited
- 4 moved
-
coroutine (moved) (moved from src/libcfa/concurrency/coroutines ) (1 diff)
-
coroutine.c (moved) (moved from src/libcfa/concurrency/coroutines.c ) (2 diffs)
-
kernel (modified) (1 diff)
-
kernel_private.h (modified) (2 diffs)
-
thread (moved) (moved from src/libcfa/concurrency/threads ) (2 diffs)
-
thread.c (moved) (moved from src/libcfa/concurrency/threads.c ) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/concurrency/coroutine
r9243cc91 r0ea1b65 6 6 // file "LICENCE" distributed with Cforall. 7 7 // 8 // coroutine s--8 // coroutine -- 9 9 // 10 10 // Author : Thierry Delisle -
src/libcfa/concurrency/coroutine.c
r9243cc91 r0ea1b65 6 6 // file "LICENCE" distributed with Cforall. 7 7 // 8 // coroutine s.c --8 // coroutine.c -- 9 9 // 10 10 // Author : Thierry Delisle … … 15 15 // 16 16 17 #include "coroutine s"17 #include "coroutine" 18 18 19 19 extern "C" { -
src/libcfa/concurrency/kernel
r9243cc91 r0ea1b65 6 6 // file "LICENCE" distributed with Cforall. 7 7 // 8 // threads--8 // kernel -- 9 9 // 10 10 // Author : Thierry Delisle -
src/libcfa/concurrency/kernel_private.h
r9243cc91 r0ea1b65 6 6 // file "LICENCE" distributed with Cforall. 7 7 // 8 // threads--8 // kernel_private.h -- 9 9 // 10 10 // Author : Thierry Delisle … … 19 19 20 20 #include "kernel" 21 #include "thread s"21 #include "thread" 22 22 23 23 //----------------------------------------------------------------------------- -
src/libcfa/concurrency/thread
r9243cc91 r0ea1b65 6 6 // file "LICENCE" distributed with Cforall. 7 7 // 8 // thread s--8 // thread -- 9 9 // 10 10 // Author : Thierry Delisle … … 21 21 #include "invoke.h" 22 22 23 #include "coroutine s"23 #include "coroutine" 24 24 25 25 //----------------------------------------------------------------------------- -
src/libcfa/concurrency/thread.c
r9243cc91 r0ea1b65 6 6 // file "LICENCE" distributed with Cforall. 7 7 // 8 // thread s.c --8 // thread.c -- 9 9 // 10 10 // Author : Thierry Delisle … … 15 15 // 16 16 17 #include "thread s"17 #include "thread" 18 18 19 19 #include "kernel_private.h"
Note:
See TracChangeset
for help on using the changeset viewer.