Files
Michał Kowalczyk df226aeb96 [Pal] Drop support for uri==NULL in DkProcessCreate
This feature doesn't seem to make much sense. Also, it was already
broken: Pal/regression/Process3.c assumed uri==NULL means spawning the
process without an executable, but PAL code interpreted this as "spawn
caller's executable again". The documentation doesn't mention this
special case, so it's hard to say which semantics was originally
intended.
2020-10-16 16:17:30 +02:00

11 lines
223 B
C

#include "api.h"
#include "pal.h"
#include "pal_debug.h"
int main(int argc, char** argv, char** envp) {
PAL_STR args[1] = {0};
if (DkProcessCreate("file:Bootstrap", args) == NULL)
return 1;
return 0;
}