summaryrefslogtreecommitdiffstats
path: root/include/utils/Thread.h
Commit message (Collapse)AuthorAgeFilesLines
* Kill HAVE_PTHREADS.Yabin Cui2015-01-271-1/+1
| | | | | Bug: 19083585 Change-Id: Ic09eb3dd250bc5c5b63cac7998f99f5fa007f407
* Remove androidGetTid.Elliott Hughes2014-08-181-2/+2
| | | | | Bug: 17048545 Change-Id: I93cbb2d7bd18d506b5f5f7f262dd9ac0fca053b4
* Add Thread::isRunning and Condition::signal(WakeUpType)Romain Guy2013-07-301-0/+3
| | | | | | | The signal() method is useful to choose whether to wake up one or all threads. Change-Id: I062ab6d3ddd306a9fb735549ea140e2a76eed75a
* split utils/threads.h into multiple headersMathias Agopian2013-07-301-0/+113
AndroidDefs.h - C/C++ enums and types Mutex.h - Mutex class declaration Condition.h - Condition class declaration RWLock.h - RWLock class declaration Thread.h - Thread class declaration AndroidThreads.h - low-level thread creation functions threads.h - includes all the above for backward source compatibility Change-Id: Ia2f80c175333b59a41d1720985810bb2346e94cb Note: implementations are still in Threads.cpp