Changeset e9e4e9ee for src/libcfa/concurrency/threads.c
- Timestamp:
- Jan 19, 2017, 11:04:27 AM (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:
- 2175062
- Parents:
- 5ebb2fbc (diff), 68e6031 (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/concurrency/threads.c
r5ebb2fbc re9e4e9ee 78 78 current_coroutine = thrd_c; 79 79 80 LIB_DEBUG_PRINTF("Thread start : %p (t %p, c %p)\n", handle, thrd_c, thrd_h);80 // LIB_DEBUG_PRINTF("Thread start : %p (t %p, c %p)\n", handle, thrd_c, thrd_h); 81 81 82 82 create_stack(&thrd_c->stack, thrd_c->stack.size); … … 84 84 CtxSwitch( thrd_c->last->stack.context, thrd_c->stack.context ); 85 85 86 the_thread = thrd_h;86 scheduler_add(thrd_h); 87 87 } 88 88
Note:
See TracChangeset
for help on using the changeset viewer.