From 784ec83696d9ecedc10ede022a035e671dd21607 Mon Sep 17 00:00:00 2001 From: Omar Rizwan Date: Mon, 25 Feb 2019 13:02:25 -0800 Subject: Rewrite and refactor C half. No more shared memory! It's fast! Three C modules: - tabfs (main thread; talks to FUSE) - common (tabfs<->ws communication helpers) - ws (side thread; talks to browser over WebSocket) It's single-threaded, but I don't think that matters anyway. --- fs/ws.h | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 fs/ws.h (limited to 'fs/ws.h') diff --git a/fs/ws.h b/fs/ws.h new file mode 100644 index 0000000..fad2c63 --- /dev/null +++ b/fs/ws.h @@ -0,0 +1,6 @@ +#ifndef WS_H +#define WS_H + +void *websocket_main(void *threadid); + +#endif -- cgit v1.2.3