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

@ -157,3 +157,8 @@ void Platform_setSwapValues(Meter* this) {
void Platform_setTasksValues(Meter* this) {
// TODO
}
char* Platform_getProcessEnv(pid_t pid) {
// TODO
return NULL;
}