diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-09-26 19:36:54 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-09-26 19:36:54 -0600 |
commit | 71e1a86a033c380f85dd300d788af63bfef25bab (patch) | |
tree | 07aa53d5a933ba51535a78972edbfe0cd95a31c5 /srv9p.c | |
parent | f5da707e77ee954b12f3c961012e4f40fa4e1bd3 (diff) |
wip reorg
Diffstat (limited to 'srv9p.c')
-rw-r--r-- | srv9p.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/srv9p.c b/srv9p.c deleted file mode 100644 index 822a9ea..0000000 --- a/srv9p.c +++ /dev/null @@ -1,18 +0,0 @@ -#include <error.h> -#include <stdio.h> - -#include "coroutine.h" -#include "net9p.h" - -int main() { - int sock = netio_listen(9000); - if (sock < 0) - error(1, -sock, "netio_listen"); - - for (int i = 0; i < 8; i++) - if (!coroutine_add(net9p_cr, &sock)) - error(1, 0, "coroutine_add(net9p_cr, NULL)"); - - coroutine_main(); - return 1; -} |