summaryrefslogtreecommitdiffhomepage
path: root/opentrack/thread.hpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2015-07-19 16:50:41 +0200
committerStanislaw Halik <sthalik@misaki.pl>2015-07-19 16:50:41 +0200
commit4da0c0619cbf052eb87a618aba4c8de79f0d4325 (patch)
treee075b2a2601d6d2f26a8a70fb83cb682cdfb23df /opentrack/thread.hpp
parentf9b5b72cbcf9f121e0184f9a907bbffd7e1e16a9 (diff)
parenta8165591d993a23ae71ea4e5bb7df7596688ef7b (diff)
Merge branch 'unstable' into trackhat-ui
Diffstat (limited to 'opentrack/thread.hpp')
-rw-r--r--opentrack/thread.hpp45
1 files changed, 0 insertions, 45 deletions
diff --git a/opentrack/thread.hpp b/opentrack/thread.hpp
deleted file mode 100644
index 946f2972..00000000
--- a/opentrack/thread.hpp
+++ /dev/null
@@ -1,45 +0,0 @@
-/* Copyright (c) 2014-2015, Stanislaw Halik <sthalik@misaki.pl>
-
- * Permission to use, copy, modify, and/or distribute this
- * software for any purpose with or without fee is hereby granted,
- * provided that the above copyright notice and this permission
- * notice appear in all copies.
- */
-
-#pragma once
-
-#include <QDebug>
-
-enum {
- CORE_WORK = 1,
- CORE_IPC = 0,
-};
-
-#ifdef _WIN32
-#include <windows.h>
-
-class Affinity {
-public:
- Affinity(int core = CORE_WORK)
- {
- DWORD_PTR ret = SetThreadAffinityMask(GetCurrentThread(), 1 << core);
- if (ret == 0)
- qDebug() << "SetThreadAffinityMask" << GetLastError();
- last = ret;
- }
- ~Affinity()
- {
- if (last)
- (void) SetThreadAffinityMask(GetCurrentThread(), last);
- }
-private:
- DWORD_PTR last;
-};
-
-#else
-class Affinity {
-public:
- Affinity(int core = CORE_WORK) {}
- ~Affinity() {}
-};
-#endif