Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/concurrency/thread.c

    rf7d6bb0 rc2b9f21  
    3333void ?{}(thread_desc& this) {
    3434        (this.self_cor){};
    35         this.self_cor.name = "Anonymous Thread";
     35        this.self_cor.name = "Anonymous Coroutine";
    3636        this.self_mon.owner = &this;
    3737        this.self_mon.recursion = 1;
    3838        this.self_mon_p = &this.self_mon;
    3939        this.next = NULL;
    40         __cfaabi_dbg_debug_do(
    41                 this.dbg_next = NULL;
    42                 this.dbg_prev = NULL;
    43                 __cfaabi_dbg_thread_register(&this);
    44         )
    4540
    4641        (this.monitors){ &this.self_mon_p, 1, (fptr_t)0 };
     
    4843
    4944void ^?{}(thread_desc& this) {
    50         __cfaabi_dbg_debug_do(
    51                 __cfaabi_dbg_thread_unregister(&this);
    52         )
    5345        ^(this.self_cor){};
    5446}
Note: See TracChangeset for help on using the changeset viewer.