mirror of
https://git.suckless.org/9base
synced 2025-08-23 00:13:47 -07:00
initial import
This commit is contained in:
21
lib9/testfork.c
Normal file
21
lib9/testfork.c
Normal file
@@ -0,0 +1,21 @@
|
||||
#include <lib9.h>
|
||||
|
||||
void
|
||||
sayhi(void *v)
|
||||
{
|
||||
USED(v);
|
||||
|
||||
print("hello from subproc\n");
|
||||
print("rendez got %lu from main\n", rendezvous(0x1234, 1234));
|
||||
exits(0);
|
||||
}
|
||||
|
||||
int
|
||||
main(int argc, char **argv)
|
||||
{
|
||||
print("hello from main\n");
|
||||
ffork(RFMEM|RFPROC, sayhi, nil);
|
||||
|
||||
print("rendez got %lu from subproc\n", rendezvous(0x1234, 0));
|
||||
exits(0);
|
||||
}
|
Reference in New Issue
Block a user