summaryrefslogtreecommitdiffstats
path: root/libraries/ganalytics/src/sys_unix.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/ganalytics/src/sys_unix.cpp')
-rw-r--r--libraries/ganalytics/src/sys_unix.cpp49
1 files changed, 0 insertions, 49 deletions
diff --git a/libraries/ganalytics/src/sys_unix.cpp b/libraries/ganalytics/src/sys_unix.cpp
deleted file mode 100644
index 866c9fdb..00000000
--- a/libraries/ganalytics/src/sys_unix.cpp
+++ /dev/null
@@ -1,49 +0,0 @@
-#include "sys.h"
-
-#include <sys/utsname.h>
-#include <fstream>
-
-Sys::KernelInfo Sys::getKernelInfo()
-{
- Sys::KernelInfo out;
- struct utsname buf;
- uname(&buf);
- out.kernelName = buf.sysname;
- out.kernelVersion = buf.release;
- return out;
-}
-
-uint64_t Sys::getSystemRam()
-{
- std::string token;
- std::ifstream file("/proc/meminfo");
- while(file >> token)
- {
- if(token == "MemTotal:")
- {
- uint64_t mem;
- if(file >> mem)
- {
- return mem * 1024ull;
- }
- else
- {
- return 0;
- }
- }
- // ignore rest of the line
- file.ignore(std::numeric_limits<std::streamsize>::max(), '\n');
- }
- return 0; // nothing found
-}
-
-bool Sys::isCPU64bit()
-{
- return isSystem64bit();
-}
-
-bool Sys::isSystem64bit()
-{
- // kernel build arch on linux
- return QSysInfo::currentCpuArchitecture() == "x86_64";
-}