| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix a logic error; use beq to check for a register being NULL, not bne. | deischen | 2003-10-02 | 1 | -1/+1 |
* | Correct the library name. | ru | 2003-10-02 | 1 | -1/+1 |
* | - Remove error code that can't be returned (and original description | kensmith | 2003-10-02 | 1 | -2/+0 |
* | Only generate code for _LCK_ASSERT if _LCK_DEBUG is defined. | davidxu | 2003-10-02 | 2 | -2/+12 |
* | Cite the published version of "Engineering a Sort Function" instead of | tjr | 2003-09-30 | 1 | -4/+7 |
* | If __sys_write() returns 0, allow that to exit the loop in libc_r's | deischen | 2003-09-29 | 1 | -2/+2 |
* | When concurrency level is reduced and a kse is exiting, make sure no other | davidxu | 2003-09-29 | 2 | -0/+26 |
* | Remove unused variable. | davidxu | 2003-09-28 | 2 | -4/+0 |
* | Relink libc_r.a, libc_r.so and libc_r_p.so from libthr to libkse. | marcel | 2003-09-27 | 3 | -12/+24 |
* | More style fixes to improve diffability with OpenBSD. | phk | 2003-09-27 | 1 | -46/+54 |
* | Disable #define DEBUG in libdisk by default: since libdisk is primarily | rwatson | 2003-09-27 | 1 | -1/+1 |
* | Style changes to improve diffability against OpenBSD version. | phk | 2003-09-27 | 1 | -91/+91 |
* | Document KERN_PROC_PROC, update KERN_PROC_ALL description. | tjr | 2003-09-27 | 1 | -2/+4 |
* | Use the 3-component version of the KERN_PROC_PROC sysctl. | tjr | 2003-09-27 | 1 | -2/+4 |
* | - Support for multibyte charsets in LIBICONV. | fjoe | 2003-09-26 | 7 | -1/+816 |
* | Add __volatile keyword. | davidxu | 2003-09-26 | 1 | -2/+4 |
* | s/ia64/alpha/g | marcel | 2003-09-26 | 1 | -5/+4 |
* | Fix fabs(). This commit brought to you by the letter 'l'. | peter | 2003-09-26 | 1 | -1/+1 |
* | pthread API should return error code in return value not in errno. | davidxu | 2003-09-25 | 2 | -4/+4 |
* | If syscall failed, restore old sigaction and return error to thread. | davidxu | 2003-09-25 | 2 | -22/+38 |
* | As comments in _mutex_lock_backout state, only current thread | davidxu | 2003-09-24 | 2 | -12/+8 |
* | Grrr...add the Skinny alias code forgotten in the last commit. | marcus | 2003-09-23 | 1 | -0/+338 |
* | Add Cisco Skinny Station protocol support to libalias, natd, and ppp. | marcus | 2003-09-23 | 6 | -1/+30 |
* | Free thread name memory if there is. | davidxu | 2003-09-23 | 2 | -0/+8 |
* | Save and restore timeout field for signal frame just like what we did | davidxu | 2003-09-22 | 4 | -2/+8 |
* | Fix FPU state restoring bug by jumping to right position. | davidxu | 2003-09-22 | 2 | -4/+4 |
* | Print waitset correctly. | davidxu | 2003-09-22 | 2 | -2/+2 |
* | Make KSE_STACKSIZE machine dependent by moving it from thr_kern.c to | marcel | 2003-09-19 | 9 | -6/+14 |
* | _ia64_break_setcontext() now takes a mcontext_t. While here, define | marcel | 2003-09-19 | 2 | -20/+6 |
* | Stop using the setcontext() syscall to restore an async context. | marcel | 2003-09-19 | 2 | -10/+10 |
* | Ignore ECHILD from waitpid(2) (our child may have been reaped by the | des | 2003-09-19 | 1 | -1/+2 |
* | pthread api should return error code in return value, not in errno. | davidxu | 2003-09-18 | 2 | -4/+2 |
* | Fix a typo. Also turn on PTHREAD_SCOPE_SYSTEM after fork(). | davidxu | 2003-09-16 | 2 | -2/+4 |
* | Remove a comment that questioned why the size of the FPU | deischen | 2003-09-16 | 2 | -20/+2 |
* | From OpenBSD: | fenner | 2003-09-15 | 1 | -1/+1 |
* | Our getaddrinfo() and getnameinfo() are thread-safe but | ume | 2003-09-15 | 2 | -2/+10 |
* | Fix bogus comment and assign sigmask in critical region, use | davidxu | 2003-09-15 | 2 | -4/+8 |
* | Fix a bogus comment, sigmask must be maintained correctly, | davidxu | 2003-09-15 | 2 | -2/+2 |
* | 1. Allocating and freeing lock related resource in _thr_alloc and _thr_free | davidxu | 2003-09-14 | 8 | -188/+174 |
* | When invoking an old style signal handler, use true traditional BSD style to | davidxu | 2003-09-14 | 2 | -12/+26 |
* | Respect POSIX specification, a value return from pthread_attr_getguardsize | davidxu | 2003-09-14 | 4 | -32/+36 |
* | Avoid garbage bits in c_flags by direct assigning value. | davidxu | 2003-09-14 | 2 | -2/+2 |
* | If user is seting scope process flag, clear PTHREAD_SCOPE_SYSTEM bit | davidxu | 2003-09-14 | 2 | -4/+8 |
* | Check invalid parameter and return EINVAL. | davidxu | 2003-09-14 | 2 | -0/+6 |
* | Get rid of duplicates. | ru | 2003-09-14 | 5 | -5/+5 |
* | mdoc(7): Fix common mistakes made in the SEE ALSO section. | ru | 2003-09-12 | 3 | -6/+8 |
* | mdoc(7): Properly mark C headers. | ru | 2003-09-10 | 24 | -34/+34 |
* | Document the fact that send(2) can return EPIPE (like when a socket is not | roberto | 2003-09-10 | 1 | -0/+4 |
* | Fixed -Wpointer-arith warning. | ru | 2003-09-09 | 1 | -1/+1 |
* | Original pthread_once code has memory leak if pthread_once_t is used in | davidxu | 2003-09-09 | 4 | -18/+104 |