summaryrefslogtreecommitdiffstats
path: root/unsupported
diff options
context:
space:
mode:
authorChristian Göttsche <cgzones@googlemail.com>2020-10-08 16:34:54 +0200
committercgzones <cgzones@googlemail.com>2020-10-16 20:00:14 +0200
commit7cd093ce95c1f59cfc1ee2786578457ea6fa1559 (patch)
tree6f86c845bed7b5ce58e222e8000e53d80756578c /unsupported
parenta8029612862e6ef6ab55b2f7adc2c8b4ac554cee (diff)
Add NetworkIOMeter
Diffstat (limited to 'unsupported')
-rw-r--r--unsupported/Platform.c10
-rw-r--r--unsupported/Platform.h5
2 files changed, 15 insertions, 0 deletions
diff --git a/unsupported/Platform.c b/unsupported/Platform.c
index 6e8968f1..cc28fd8f 100644
--- a/unsupported/Platform.c
+++ b/unsupported/Platform.c
@@ -144,3 +144,13 @@ char* Platform_getProcessEnv(pid_t pid) {
void Platform_getDiskIO(unsigned long int *bytesRead, unsigned long int *bytesWrite, unsigned long int *msTimeSpend) {
*bytesRead = *bytesWrite = *msTimeSpend = 0;
}
+
+void Platform_getNetworkIO(unsigned long int *bytesReceived,
+ unsigned long int *packetsReceived,
+ unsigned long int *bytesTransmitted,
+ unsigned long int *packetsTransmitted) {
+ *bytesReceived = 0;
+ *packetsReceived = 0;
+ *bytesTransmitted = 0;
+ *packetsTransmitted = 0;
+}
diff --git a/unsupported/Platform.h b/unsupported/Platform.h
index f24dcf4c..1049919d 100644
--- a/unsupported/Platform.h
+++ b/unsupported/Platform.h
@@ -49,4 +49,9 @@ char* Platform_getProcessEnv(pid_t pid);
void Platform_getDiskIO(unsigned long int *bytesRead, unsigned long int *bytesWrite, unsigned long int *msTimeSpend);
+void Platform_getNetworkIO(unsigned long int *bytesReceived,
+ unsigned long int *packetsReceived,
+ unsigned long int *bytesTransmitted,
+ unsigned long int *packetsTransmitted);
+
#endif

© 2014-2024 Faster IT GmbH | imprint | privacy policy