Changeset 7fbe450 for src/examples


Ignore:
Timestamp:
Jan 18, 2017, 12:06:44 PM (8 years ago)
Author:
Thierry Delisle <tdelisle@…>
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:
c84e80a
Parents:
c49bf54
Message:

No longer using co_main for coroutines/threads, now simply using main

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/examples/thread.c

    rc49bf54 r7fbe450  
    2626void ^?{}( MyThread * this ) {}
    2727
    28 void co_main(MyThread* this) {
     28void main(MyThread* this) {
    2929        printf("Main called with %p\n", this);
    3030        printf("Thread value is %d\n", this->value);
     
    4444        printf("Address %p\n", this);
    4545        printf("handle %p\n", get_thread(this));
    46         printf("main %p\n", co_main);
     46        printf("main %p\n", main);
    4747        printf("get_t %p\n", get_thread);
    4848        printf("invoke %p\n", CtxInvokeThread);
     
    5757        thread(MyThread) thread1;
    5858
    59         printf("Main is %p\n", this_coroutine());       
     59        printf("Main is %p\n", this_coroutine());
    6060
    6161        printf("First thread created\n");
Note: See TracChangeset for help on using the changeset viewer.