Ignore:
Timestamp:
Mar 17, 2017, 11:34:15 AM (7 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:
b32ada31
Parents:
9f1695b
Message:

Some clean-up of runtime code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/tests/coroutine.c

    r9f1695b r17af7d1  
    44struct Fibonacci {
    55      int fn; // used for communication
    6       coroutine_desc c;
     6      coroutine_desc __cor;
    77};
    88
     
    1212
    1313coroutine_desc* get_coroutine(Fibonacci* this) {
    14       return &this->c;
     14      return &this->__cor;
    1515}
    1616
     
    1818#ifdef MORE_DEBUG
    1919      sout | "Starting main of coroutine " | this | endl;
    20       sout | "Started from " | this->c.last | endl;
     20      sout | "Started from " | this->__cor.last | endl;
    2121#endif
    2222      int fn1, fn2;             // retained between resumes
Note: See TracChangeset for help on using the changeset viewer.