Changeset e235429 for benchmark/io/http
- Timestamp:
- Oct 1, 2020, 1:52:53 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- b4b63e8
- Parents:
- 038110a
- Location:
- benchmark/io/http
- Files:
-
- 2 edited
-
main.cfa (modified) (1 diff)
-
worker.cfa (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
benchmark/io/http/main.cfa
r038110a re235429 125 125 workers[i].flags = 0; 126 126 } 127 unpark( workers[i] __cfaabi_dbg_ctx2);127 unpark( workers[i] ); 128 128 } 129 129 printf("%d workers started on %d processors\n", options.clopts.nworkers, options.clopts.nprocs); -
benchmark/io/http/worker.cfa
r038110a re235429 22 22 23 23 void main( Worker & this ) { 24 park( __cfaabi_dbg_ctx);24 park(); 25 25 /* paranoid */ assert( this.pipe[0] != -1 ); 26 26 /* paranoid */ assert( this.pipe[1] != -1 );
Note:
See TracChangeset
for help on using the changeset viewer.