source: benchmark/io/http/worker.hfa @ b57db73

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since b57db73 was 481ee28, checked in by Thierry Delisle <tdelisle@…>, 3 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
Line 
1#pragma once
2
3#include <thread.hfa>
4
5extern "C" {
6        #include <sys/socket.h>
7}
8
9//=============================================================================================
10// Worker Thread
11//=============================================================================================
12
13thread Worker {
14        int pipe[2];
15        int sockfd;
16        struct sockaddr * addr;
17        socklen_t * addrlen;
18        int flags;
19        io_cancellation cancel;
20        volatile bool done;
21};
22void ?{}( Worker & this);
23void main( Worker & );
Note: See TracBrowser for help on using the repository browser.