Ignore:
Timestamp:
Jan 31, 2018, 11:33:01 AM (6 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:
0394c31
Parents:
633a642
Message:

Updated longrun tests which where out of date

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/tests/preempt_longrun/enter3.c

    r633a642 r1449d83  
    1717mon_t mon1, mon2, mon3;
    1818
    19 void foo( mon_t * mutex a, mon_t * mutex b, mon_t * mutex c ) {}
     19void foo( mon_t & mutex a, mon_t & mutex b, mon_t & mutex c ) {}
    2020
    2121thread worker_t {};
    2222
    23 void main( worker_t * this ) {
     23void main( worker_t & this ) {
    2424        for( unsigned long i = 0; i < N; i++ ) {
    25                 foo( &mon1, &mon2, &mon3 );
     25                foo( mon1, mon2, mon3 );
    2626        }
    2727}
Note: See TracChangeset for help on using the changeset viewer.