summaryrefslogtreecommitdiff
path: root/9psrv.c
blob: e120eff31cabae31f654ee390a382524618a13ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "coroutine.h"
#include "net9p.h"

int main() {
	coroutine_init();

	net9p_listen_stack_t stack = {0};
	coroutine_add(net9p_listen_cr, &stack);

	for (;;) {
		coroutine_task();
	}
}