summaryrefslogtreecommitdiff
path: root/src/common/thread.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* common/thread: Drop Hungarian notation on SetCurrentThreadName's parameterGravatar Lioncash2018-11-221-7/+7
| | | | This is inconsistent with our coding style.
* common/thread: Remove SleepCurrentThread()Gravatar Lioncash2018-11-211-11/+0
| | | | | | | This is also unused and superceded by standard functionality. The standard library provides std::this_thread::sleep_for(), which provides a much more flexible interface, as different time units can be used with it.
* common/thread: Remove unused CurrentThreadId()Gravatar Lioncash2018-11-211-10/+0
| | | | | | This is an old function that's no longer necessary. C++11 introduced proper threading support to the language and a thread ID can be retrieved via std::this_thread::get_id() if it's ever needed.
* Support mingw cross-compileGravatar Jannik Vogel2016-12-051-1/+1
|
* common: only FreeBSD has thread affinity compatible with LinuxGravatar Jan Beich2016-10-271-1/+5
| | | | | | | | | | | src/common/thread.cpp:90:5: error: unknown type name 'cpu_set_t'; did you mean 'cpuset_t'? cpu_set_t cpu_set; ^~~~~~~~~ cpuset_t /usr/include/sys/_cpuset.h:48:24: note: 'cpuset_t' declared here typedef struct _cpuset cpuset_t; ^ 1 error generated.
* common: define routines to set thread name on more BSDsGravatar Jan Beich2016-10-271-2/+4
| | | | | | | src/common/thread.cpp:123:5: error: use of undeclared identifier 'pthread_setname_np' pthread_setname_np(pthread_self(), szThreadName); ^ 1 error generated.
* Remove empty newlines in #include blocks.Gravatar Emmanuel Gil Peyrot2016-09-211-2/+0
| | | | | | | This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
* Sources: Run clang-format on everything.Gravatar Emmanuel Gil Peyrot2016-09-181-48/+32
|
* Common: Cleanup thread includes.Gravatar Emmanuel Gil Peyrot2015-06-281-4/+13
|
* Fix MSVC-related #defines and add CMakeLists commentGravatar darkf2014-12-291-3/+3
|
* Fix merge conflictsGravatar darkf2014-12-291-2/+2
|\
| * License changeGravatar purpasmart962014-12-201-2/+2
| |
* | Fix MinGW buildGravatar darkf2014-11-281-8/+15
|/
* Remove trailing spaces in every file but the ones imported from SkyEye, AOSP ↵Gravatar Emmanuel Gil Peyrot2014-11-191-3/+3
| | | | or generated
* common: Prune all redundant includesGravatar archshift2014-09-081-1/+0
|
* Removed common/std_xyz, instead using the std headerGravatar archshift2014-09-071-4/+2
|
* Use pthread_set_name_np() on OpenBSD.Gravatar Anthony J. Bentley2014-08-071-1/+3
|
* fixed project includes to use new directory structureGravatar bunnei2014-04-081-2/+2
|
* got rid of 'src' folders in each sub-projectGravatar bunnei2014-04-081-0/+133