Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Setup stub unit test infrastructure | EuAndreh | 2024-01-05 | 1 | -0/+8 |
| | |||||
* | support cputime clocks for processes/threads other than self | Rich Felker | 2013-06-08 | 1 | -1/+2 |
| | | | | | | | apparently these features have been in Linux for a while now, so it makes sense to support them. the bit twiddling seems utterly illogical and wasteful, especially the negation, but that's how the kernel folks chose to encode pids/tids into the clock id. | ||||
* | add stub versions of some missing optional pthread interfaces | Rich Felker | 2012-11-17 | 1 | -0/+6 |
priority inheritance is not yet supported, and priority protection probably will not be supported ever unless there's serious demand for it (it's a fairly heavy-weight feature). per-thread cpu clocks would be nice to have, but to my knowledge linux is still not capable of supporting them. glibc fakes them by using the _process_ cpu-time clock and subtracting the thread creation time, which gives seriously incorrect semantics (worse than not supporting the feature at all), so until there's a way to do it right, it will remain as a stub that always fails. |