2025-06-27 14:48:06 -05:00
|
|
|
|
2025-05-28 14:41:02 -05:00
|
|
|
|
|
|
|
#include <processes.h>
|
|
|
|
|
|
|
|
|
2025-06-27 14:48:06 -05:00
|
|
|
int32_t next_id = 9; /* 0 through 8 are reserved for kernel operations */
|
|
|
|
|
|
|
|
int32_t make_process(char* name, char* group, elf_executable_t* exe)
|
|
|
|
{
|
|
|
|
if (!name || !group || !exe)
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|