| Commit message (Expand) | Author | Age | Files | Lines |
* | Non-portable functions are in pthread_np.h, fix compiling problem. | davidxu | 2008-04-02 | 1 | -1/+1 |
* | Add pthread_setaffinity_np and pthread_getaffinity_np to libc namespace. | davidxu | 2008-04-02 | 3 | -2/+4 |
* | Remove unused functions. | davidxu | 2008-04-02 | 2 | -55/+0 |
* | Replace function _umtx_op with _umtx_op_err, the later function directly | davidxu | 2008-04-02 | 9 | -51/+112 |
* | Replace userland rwlock with a pure kernel based rwlock, the new | davidxu | 2008-04-02 | 4 | -223/+199 |
* | Normally, we are often reading local time rather than setting time zone, | davidxu | 2008-04-01 | 1 | -22/+63 |
* | Restore normal pthread_cond_signal path to avoid some obscure races. | davidxu | 2008-04-01 | 1 | -2/+3 |
* | return EAGAIN early rather than running bunch of code later, micro optimize | davidxu | 2008-04-01 | 1 | -1/+3 |
* | Remove a (bogus) remnant of debugging this on sparc64. | das | 2008-03-31 | 1 | -1/+1 |
* | Add the libc glue and headers definitions for the *at() syscalls. | kib | 2008-03-31 | 1 | -0/+18 |
* | Include an extra byte for the trailing NUL. <sigh> | kientzle | 2008-03-31 | 1 | -1/+1 |
* | Rewrite rwlock to user atomic operations to change rwlock state, this | davidxu | 2008-03-31 | 3 | -141/+281 |
* | Add assembly versions of remquol() and remainderl(). | das | 2008-03-30 | 6 | -4/+228 |
* | Hook remquol() and remainderl() up to the build. | das | 2008-03-30 | 4 | -12/+33 |
* | Implement remainderl() as a wrapper around remquol(). The extra work | das | 2008-03-30 | 2 | -0/+44 |
* | Implement remquol() based on remquo(). | das | 2008-03-30 | 2 | -0/+183 |
* | Implement csqrtl(). | das | 2008-03-30 | 5 | -13/+135 |
* | Hook hypotl() and cabsl() up to the build. | das | 2008-03-30 | 3 | -6/+7 |
* | Document hypotl(). | das | 2008-03-30 | 1 | -12/+17 |
* | Alias hypotl() and cabsl() for platforms where long double is the same | das | 2008-03-30 | 2 | -2/+12 |
* | Implement cabsl() in terms of hypotl(). | das | 2008-03-30 | 1 | -0/+20 |
* | Implement hypotl(). This is bde's conversion of fdlibm hypot(), with minor | das | 2008-03-30 | 1 | -0/+139 |
* | Use fabs[f]() instead of bit fiddling for setting absolute values. | bde | 2008-03-30 | 2 | -4/+4 |
* | Use the expression fabs(x+0.0)-fabs(y+0.0) instead of | bde | 2008-03-30 | 2 | -2/+2 |
* | Fix a missing mask in a hi+lo decomposition. Thus bug made the extra | bde | 2008-03-30 | 1 | -1/+1 |
* | Don't call xdrrec_skiprecord in the non-blocking case. If | dfr | 2008-03-30 | 1 | -1/+2 |
* | Don't assume that there is readable data on the stream after the | dfr | 2008-03-30 | 1 | -0/+6 |
* | Remove options MK_LIBKSE and DEFAULT_THREAD_LIB now that we no longer | ru | 2008-03-29 | 1 | -4/+1 |
* | Include math.h for the fmaf() prototype. | das | 2008-03-29 | 1 | -0/+2 |
* | Fix some rather obscene code that has ambiguous if...if...else... | das | 2008-03-29 | 6 | -10/+36 |
* | Document modff() and modfl(). Technically, modff() and modfl() | das | 2008-03-29 | 2 | -12/+23 |
* | - Add a man page for cpuset_getaffinity() and cpuset_setaffinity() and | jeff | 2008-03-29 | 2 | -2/+159 |
* | - Add a man page for cpuset(), cpuset_setid(), and cpuset_getid() and hook | jeff | 2008-03-29 | 2 | -1/+227 |
* | Add support to mincore for detecting whether a page is part of a | ps | 2008-03-28 | 1 | -0/+2 |
* | Removed no longer existing CTL_MACHDEP defines. | ru | 2008-03-26 | 1 | -12/+1 |
* | Add the new kernel-mode NFS Lock Manager. To use it instead of the | dfr | 2008-03-26 | 3 | -3/+9 |
* | Fix some "in in" typos in comments. | brueffer | 2008-03-26 | 4 | -4/+4 |
* | Compile libthr with warnings. | ru | 2008-03-25 | 1 | -0/+3 |
* | Compile libthr with warnings. | ru | 2008-03-25 | 4 | -6/+12 |
* | Fixed mis-implementation of pthread_mutex_get{spin,yield}loops_np(). | ru | 2008-03-25 | 1 | -4/+7 |
* | - Restore kse.h in this directory so other tools don't find it by mistake. | jeff | 2008-03-23 | 3 | -1/+137 |
* | Add POSIX pthread API pthread_getcpuclockid() to get a thread's cpu | davidxu | 2008-03-22 | 3 | -0/+50 |
* | Use linker set to collection all target operations. | davidxu | 2008-03-22 | 4 | -13/+22 |
* | Add MLINK for archive_write_close. | kaiw | 2008-03-21 | 1 | -0/+1 |
* | Resolve __error()'s PLT early so that it needs not to be resolved again, | davidxu | 2008-03-21 | 1 | -0/+3 |
* | pthread_mutexattr_destroy() was accidentally broken in last revision, | ru | 2008-03-20 | 1 | -0/+1 |
* | s/wait/delta/ to avoid namespace collision. | des | 2008-03-20 | 1 | -16/+16 |
* | Preserve application code's errno in rtld locking code, it attemps to keep | davidxu | 2008-03-20 | 1 | -2/+31 |
* | Make pthread_mutexattr_settype to return error number directly and | davidxu | 2008-03-20 | 1 | -3/+1 |
* | don't reduce new thread's refcount if current thread can not set cpuset | davidxu | 2008-03-19 | 1 | -1/+1 |