banan-os/userspace/test/test.cpp

23 lines
295 B
C++
Raw Normal View History

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
2023-05-28 18:08:26 +03:00
#include <unistd.h>
#define ERROR(msg) { perror(msg); return 1; }
#define BUF_SIZE 1024
int main()
{
2023-05-28 18:08:26 +03:00
printf("forking\n");
2023-05-28 18:08:26 +03:00
pid_t pid = fork();
if (pid == 0)
{
2023-05-28 18:08:26 +03:00
printf("child\n");
return 0;
}
2023-05-28 18:08:26 +03:00
printf("parent\n");
return 0;
}