From 269c81f0217999367b4180e6a795142cbb2d02e7 Mon Sep 17 00:00:00 2001 From: glenda Date: Sun, 18 Sep 2022 14:55:48 +0000 Subject: Implement remote message passing via pipes! --- main.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'main.c') diff --git a/main.c b/main.c index 3da4841..d921810 100644 --- a/main.c +++ b/main.c @@ -9,6 +9,7 @@ Biobuf *stdin; static int booted = 0; static Rune *startfile = L"/sys/lib/apl/runtime/start.apl"; static Rune *stdlibfile = L"/sys/lib/apl/runtime/stdlib.apl"; +static Rune *remotefile = L"/sys/lib/apl/runtime/remote.apl"; void main(int argc, char *argv[]) @@ -43,6 +44,7 @@ restart: if(!booted){ booted = 1; runfile(mkrunearray(stdlibfile)); + runfile(mkrunearray(remotefile)); runfile(mkrunearray(startfile)); } -- cgit v1.2.3