Changeset 4150779 for libcfa/src/concurrency/clib
- Timestamp:
- Mar 24, 2021, 2:35:24 PM (4 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 4260566
- Parents:
- 98d9ce9
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/clib/cfathread.cfa
r98d9ce9 r4150779 58 58 this.themain = themain; 59 59 this.arg = arg; 60 ( (thread&)this){"C-thread", cl};60 (this.self){"C-thread", cl}; 61 61 __thrd_start(this, main); 62 62 } … … 102 102 this.init = init; 103 103 this.arg = arg; 104 ( (thread&)this){"Processir Init"};104 (this.self){"Processir Init"}; 105 105 106 106 // Don't use __thrd_start! just prep the context manually
Note: See TracChangeset
for help on using the changeset viewer.