Move "get max pid" code into platform specific area.

This commit is contained in:
Hisham Muhammad
2014-11-27 20:10:23 -02:00
parent 5578a316f0
commit b4f6b11092
5 changed files with 19 additions and 8 deletions

View File

@ -54,3 +54,7 @@ void Platform_getLoadAverage(double* one, double* five, double* fifteen) {
*five = 0;
*fifteen = 0;
}
int Platform_getMaxPid() {
return -1;
}