ADT
arm-eh
ast-experimental
enum
forall-pointer-decay
jacob/cs343-translation
new-ast-unique-expr
pthread-emulation
qualifiedEnum
Last change
on this file since d23c0b2 was 481ee28, checked in by Thierry Delisle <tdelisle@…>, 5 years ago |
Removed experiment type, server just supports both urls.
Logging is now optional.
Added done flag so spurious invalid accepts are caught.
|
-
Property mode
set to
100644
|
File size:
487 bytes
|
Rev | Line | |
---|
[0aec496] | 1 | #pragma once
|
---|
| 2 |
|
---|
| 3 | #include <thread.hfa>
|
---|
| 4 |
|
---|
| 5 | extern "C" {
|
---|
| 6 | #include <sys/socket.h>
|
---|
| 7 | }
|
---|
| 8 |
|
---|
| 9 | //=============================================================================================
|
---|
| 10 | // Worker Thread
|
---|
| 11 | //=============================================================================================
|
---|
| 12 |
|
---|
| 13 | thread Worker {
|
---|
| 14 | int pipe[2];
|
---|
| 15 | int sockfd;
|
---|
| 16 | struct sockaddr * addr;
|
---|
| 17 | socklen_t * addrlen;
|
---|
| 18 | int flags;
|
---|
[ece0e80] | 19 | io_cancellation cancel;
|
---|
[481ee28] | 20 | volatile bool done;
|
---|
[0aec496] | 21 | };
|
---|
[8e3034d] | 22 | void ?{}( Worker & this);
|
---|
| 23 | void main( Worker & );
|
---|
Note:
See
TracBrowser
for help on using the repository browser.