Add Platform_getProcessEnv

- currently implemented for darwin and linux
This commit is contained in:
Michael Klein
2015-12-03 22:16:10 +01:00
parent 0919ea32f9
commit cc23d13f87
8 changed files with 109 additions and 47 deletions

View File

@ -131,3 +131,6 @@ bool Process_isThread(Process* this) {
return false;
}
char* Platform_getProcessEnv(pid_t pid) {
return NULL;
}