blob: 2c403df15f01316ce924cb31fe403f55fa3a6925 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#include <error.h>
#include <stdio.h>
#include <libcr/coroutine.h>
#include <libnetio/netio.h>
#include <lib9p/srv.h>
#define USE_CONFIG_COROUTINE
#include "config.h"
int main() {
int sock = netio_listen(9000);
if (sock < 0)
error(1, -sock, "netio_listen");
struct lib9p_srv srv = {
.sockfd = sock,
};
for (int i = 0; i < CONFIG_NETIO_NUM_CONNS; i++)
if (!coroutine_add(lib9p_srv_read_cr, &srv))
error(1, 0, "coroutine_add(lib9p_srv_read_cr, &srv)");
for (int i = 0; i < 2*CONFIG_NETIO_NUM_CONNS; i++)
if (!coroutine_add(lib9p_srv_write_cr, &srv))
error(1, 0, "coroutine_add(lib9p_srv_write_cr, &srv)");
coroutine_main();
return 1;
}
|