-
Notifications
You must be signed in to change notification settings - Fork 56
MTY_RestartProcess
chrisd1100 edited this page Aug 25, 2022
·
1 revision
Restart the current process.
For more information, see execv
from the C standard library.
bool MTY_RestartProcess(
char * const * argv
);
argv
(char * const *
)
Arguments to set up a call to execv
. This is an array of strings that must have its last element set to NULL
.
bool
On success this function does not return, otherwise it returns false
. Call MTY_GetLog
for details.