summaryrefslogtreecommitdiffhomepage
path: root/opentrack-compat
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2015-10-20 03:23:57 +0200
committerStanislaw Halik <sthalik@misaki.pl>2015-10-20 03:23:57 +0200
commit6186f49000e6895b03661cd01c3f1c9c5950577a (patch)
tree2353488ae6eb4de89c35b8d0b7effe82c7ba2522 /opentrack-compat
parentf1e71e68512bc58f3f41ba4566f9d1574773d742 (diff)
all: comments only
Diffstat (limited to 'opentrack-compat')
-rw-r--r--opentrack-compat/shm.cpp5
-rw-r--r--opentrack-compat/sleep.hpp2
2 files changed, 5 insertions, 2 deletions
diff --git a/opentrack-compat/shm.cpp b/opentrack-compat/shm.cpp
index b18a9933..029a4c95 100644
--- a/opentrack-compat/shm.cpp
+++ b/opentrack-compat/shm.cpp
@@ -43,10 +43,13 @@ void PortableLockedShm::unlock()
(void) ReleaseMutex(hMutex);
}
#else
+
+#include <limits.h>
+
#pragma GCC diagnostic ignored "-Wunused-result"
PortableLockedShm::PortableLockedShm(const char *shmName, const char* /*mutexName*/, int mapSize) : size(mapSize)
{
- char filename[512] = {0};
+ char filename[PATH_MAX+2] = {0};
strcpy(filename, "/");
strcat(filename, shmName);
fd = shm_open(filename, O_RDWR | O_CREAT, 0600);
diff --git a/opentrack-compat/sleep.hpp b/opentrack-compat/sleep.hpp
index 27920842..e7c70285 100644
--- a/opentrack-compat/sleep.hpp
+++ b/opentrack-compat/sleep.hpp
@@ -3,7 +3,7 @@
namespace portable
{
#ifdef _WIN32
- #include <windows.h>
+# include <windows.h>
template<typename = void>
void sleep(unsigned milliseconds)