mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-06 05:41:37 +00:00
21 lines
405 B
C
21 lines
405 B
C
#include <errno.h>
|
|
#include <shim_table.h>
|
|
|
|
int main(int argc, char** argv) {
|
|
pid_t pid = shim_fork();
|
|
|
|
if (pid < 0) {
|
|
shim_write(1, "failed on fork\n", 15);
|
|
shim_exit_group(-1);
|
|
}
|
|
|
|
if (pid == 0) {
|
|
shim_write(1, "Hello, Dad!\n", 12);
|
|
} else {
|
|
shim_write(1, "Hello, Kid!\n", 12);
|
|
}
|
|
|
|
shim_exit_group(0);
|
|
return 0; // should not reach here.
|
|
}
|