Changeset d9c2284 for benchmark/io/http/main.cfa
- Timestamp:
- Jul 20, 2020, 4:32:04 PM (3 years ago)
- Branches:
- ADT, arm-eh, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 5751a56
- Parents:
- 124c1b7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
benchmark/io/http/main.cfa
r124c1b7 rd9c2284 93 93 &wait_connect = &chan; 94 94 95 int pipe_cnt = options.clopts.nworkers * 2; 96 int pipe_off; 97 int * fds; 98 [fds, pipe_off] = filefds( pipe_cnt ); 99 for(i; 0 ~ pipe_cnt ~ 2) { 100 int ret = pipe(&fds[pipe_off + i]); 101 if( ret < 0 ) { abort( "pipe error: (%d) %s\n", (int)errno, strerror(errno) ); } 102 } 103 95 104 { 96 105 ServerProc procs[options.clopts.nprocs]; 97 106 { 98 107 Worker workers[options.clopts.nworkers]; 108 for(i; options.clopts.nworkers) { 109 if( options.file_cache.fixed_fds ) { 110 workers[i].pipe[0] = pipe_off + (i * 2) + 0; 111 workers[i].pipe[1] = pipe_off + (i * 2) + 1; 112 } 113 else { 114 workers[i].pipe[0] = fds[pipe_off + (i * 2) + 0]; 115 workers[i].pipe[1] = fds[pipe_off + (i * 2) + 1]; 116 } 117 unpark( workers[i] __cfaabi_dbg_ctx2 ); 118 } 99 119 printf("%d workers started on %d processors\n", options.clopts.nworkers, options.clopts.nprocs); 100 120 { … … 117 137 printf("Workers Closed\n"); 118 138 } 139 140 for(i; pipe_cnt) { 141 ret = close( fds[pipe_off + i] ); 142 if(ret < 0) { 143 abort( "close pipe error: (%d) %s\n", (int)errno, strerror(errno) ); 144 } 145 } 146 free(fds); 119 147 } 120 148
Note: See TracChangeset
for help on using the changeset viewer.