Userspace process creation stub

This commit is contained in:
Alex
2022-11-02 17:16:11 +02:00
parent efea5e7aaf
commit bb92e820fc
4 changed files with 59 additions and 1 deletions

6
Execute/Parse.cpp Normal file
View File

@ -0,0 +1,6 @@
#include <exec.hpp>
namespace Execute
{
}

9
Execute/Spawn.cpp Normal file
View File

@ -0,0 +1,9 @@
#include <exec.hpp>
namespace Execute
{
ExStatus Spawn(char *Path, uint64_t Arg0, uint64_t Arg1)
{
return ExStatus::Unknown;
}
}