summaryrefslogtreecommitdiffstats
path: root/solaris/Platform.c
diff options
context:
space:
mode:
Diffstat (limited to 'solaris/Platform.c')
-rw-r--r--solaris/Platform.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/solaris/Platform.c b/solaris/Platform.c
index 05b44462..2114215e 100644
--- a/solaris/Platform.c
+++ b/solaris/Platform.c
@@ -258,3 +258,8 @@ char* Platform_getProcessEnv(pid_t pid) {
strncpy( envBuilder.env + envBuilder.size, "\0", 1);
return envBuilder.env;
}
+
+void Platform_getDiskIO(unsigned long int *bytesRead, unsigned long int *bytesWrite, unsigned long int *msTimeSpend) {
+ // TODO
+ *bytesRead = *bytesWrite = *msTimeSpend = 0;
+}