Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Register signal 33 explicitly as reserved by real-time library, and | rmh | 2012-03-26 | 1 | -5/+5 |
| | | | | | | | use it by its new name (SIGLIBRT) rather than internal definition in librt (SIGSERVICE). Approved by: davidxu, arch | ||||
* | Fix compiler warnings. | davidxu | 2009-11-18 | 1 | -2/+2 |
| | |||||
* | atomic_fetchadd_int works on unsigned quantities - change | kmacy | 2008-08-15 | 1 | -1/+1 |
| | | | | | | sigev_generation to be unsigned MFC after: 1 month | ||||
* | Account for recent changes in namespace.h. Use _pthread_create | deischen | 2006-03-29 | 1 | -4/+4 |
| | | | | instead of pthread_create. | ||||
* | Block all signals in helper threads except those should not be blocked. | davidxu | 2006-03-10 | 1 | -6/+9 |
| | |||||
* | Remove stale comments. | davidxu | 2006-03-07 | 1 | -4/+0 |
| | |||||
* | 1. Always call user callback function in newly created thread, it seems | davidxu | 2006-03-07 | 1 | -378/+159 |
| | | | | | | POSIX implies that the user callback function must be executed in clean environment. 2. Use newly introduced pthread stubs in libc. | ||||
* | Use a thread pool to process notification if sigev_notify_attributes | davidxu | 2006-03-04 | 1 | -48/+306 |
| | | | | | | | | is default and caller does not require dedicated thread. timer needs a dedicated thread to maintain overrun count correctly in notification context. mqueue and aio can use thread pool to do notification concurrently, the thread pool has lifecycle control, some threads will exit if they have idled for a while. | ||||
* | Fix a mutex lock/unlock mismatch. | davidxu | 2006-03-01 | 1 | -2/+3 |
| | |||||
* | Forgot to revert to use weak symbols when I was debugging, fix it! | davidxu | 2006-03-01 | 1 | -22/+15 |
| | |||||
* | Bring in my initial version of POSIX realtime extension library. | davidxu | 2006-03-01 | 1 | -0/+433 |
Current the library implements mqueue, timer and aio with SIGEV_THREAD notification supported. Earlier version reviewed by: deischen |