Luna/libos/include/os/Process.h

13 lines
161 B
C
Raw Normal View History

2023-04-18 16:16:24 +00:00
#pragma once
#include <luna/Result.h>
#include <sys/types.h>
namespace os
{
class Process
{
public:
static Result<pid_t> fork();
};
}