Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-09-10 | Enough for libc_r on sparc64 to build (this stuff is mostly taken from sparc, | Jason Wright | |
and will need attention before it can be expected to work). | |||
2001-09-10 | Our gcc defines __sparcv9__ not __sparc_v9__ | Jason Wright | |
2001-09-05 | and fix PTL site. | Federico G. Schwindt | |
2001-09-05 | Rearrange and add missing ports based on recent 'Use threads' commits. | Federico G. Schwindt | |
2001-09-05 | add getpw*_r to the list; from brad@ | Federico G. Schwindt | |
2001-09-05 | Add getaddrinfo(3) and gethostby*_r(3) to the list. | Federico G. Schwindt | |
2001-09-04 | Use _waitq_remove() and _waitq_insert() always; from FreeBSD. | Federico G. Schwindt | |
2001-09-04 | put changes back, this time ALL the files. | Federico G. Schwindt | |
2001-08-30 | Back out fgsch@'s tree breaking commits. | Todd T. Fries | |
Test next time, ok? | |||
2001-08-30 | fix some const warnings. | Federico G. Schwindt | |
more sync with freebsd. | |||
2001-08-29 | More sync with FreeBSD. | Federico G. Schwindt | |
2001-08-26 | More syncing with FreeBSD, preparing for a commit. | Federico G. Schwindt | |
2001-08-21 | Start syncing with FreeBSD: | Federico G. Schwindt | |
o Implement _get_curthread() and _set_curthread(). Use it where possible. o Add missing _thread_[enter|leave]_cancellation_point(). o Add a couple of not yet used vars to pthread_private.h. o Remove return's from void functions. This is by no means complete, but instead of doing a big commit, i'll split it in small ones, minimizing diffs. | |||
2001-08-20 | spelling | Peter Valchev | |
2001-08-19 | enable pthread_main_np(3) | Peter Valchev | |
2001-08-18 | Describe the pthread_main_np() function | Peter Valchev | |
2001-08-18 | fix a typo and add devel/sdl to the ports applications using these pthreads | Peter Valchev | |
for testing | |||
2001-08-17 | pthread_main_np prototype | Peter Valchev | |
2001-08-17 | Provide the equivalent to Solaris thr_main() function; from FreeBSD | Peter Valchev | |
2001-08-17 | correctly return ssize_t. | Federico G. Schwindt | |
2001-08-17 | correctly return ssize_t. | Federico G. Schwindt | |
2001-08-15 | ops, _thread_kern_set_timeout() to const. | Federico G. Schwindt | |
2001-08-15 | * kevent(2) support; from FreeBSD. | Federico G. Schwindt | |
* change _thread_kern_set_timeout() parm to const. | |||
2001-08-15 | Use INFTIM. | Federico G. Schwindt | |
2001-08-15 | For unsupported sched policies, return ENOTSUP, not EINVAL; from FreeBSD. | Federico G. Schwindt | |
2001-08-15 | TEST has moved to regress/lib/libc_r. | Federico G. Schwindt | |
2001-08-12 | public domain | David Leonard | |
2001-08-12 | #(endif|else) foo is incorrect, make it #endif /* foo */ | Heikki Korpela | |
deraadt@ ok | |||
2001-08-11 | manpage for pthread_[get|set]schedparam; from FreeBSD. | Federico G. Schwindt | |
2001-08-11 | add missing _thread_enter_cancellation_point() before going further. | Federico G. Schwindt | |
2001-08-11 | Avoid an infinite loop if the last iov_len is 0; from FreeBSD. | Federico G. Schwindt | |
2001-08-10 | pthread_* do not set errno but returns a errno value. | Federico G. Schwindt | |
2001-08-09 | Only return EINVAL if attr is invalid. If policy is invalid return | Federico G. Schwindt | |
EOPNOTSUPP; from FreeBSD. | |||
2001-08-09 | Do not return EINVAL if param is NULL or the desired scheduling policy | Federico G. Schwindt | |
is unsupported but EOPNOTSUPP; from FreeBSD. | |||
2001-08-09 | Implement pthread_mutexattr_gettype() as defined in Single Unix Spec, v2; | Federico G. Schwindt | |
from FreeBSD. | |||
2001-08-06 | bump minor; getrrsetbyname(3) in libc | Jakob Schlyter | |
2001-08-06 | o) We always close .Bl and .Bd tags; | Mike Pechkin | |
o) .Sh AUTHOR -> .Sh AUTHORS; o) We don't like .Pp before/after .Sh; o) We don't like .Pp before/after .Rs/.Re; o) NetBSD -> .Nx; o) OpenBSD -> .Ox; millert@ ok | |||
2001-08-04 | don't return on void. | Federico G. Schwindt | |
2001-08-04 | pthread_mutexattr_* manpage; from FreeBSD. | Federico G. Schwindt | |
2001-08-03 | typo; krapht@secureops.com | Theo de Raadt | |
2001-07-09 | correct type on last arg to execl(); nordin@cse.ogi.edu | Theo de Raadt | |
2001-06-26 | crank minor version | Dug Song | |
2001-06-24 | remove double space after comma | jasoni | |
2001-06-24 | grammar | jasoni | |
2001-06-18 | Add new cgetusedb() function to toggle reading of .db files in getcap(3). | Todd C. Miller | |
Needed for cap_mkdb to really DRT when given several input files or an output file with a different name from the input file. cvs: ---------------------------------------------------------------------- | |||
2001-06-01 | missing word | jasoni | |
"function will non-zero" -> "function will return non-zero" | |||
2001-05-31 | missing word | jasoni | |
"the temporarily lacks the resources" -> "the system temporarily lacks...." | |||
2001-05-31 | more typos | Theo de Raadt | |
2001-05-31 | typos; first few spotted by heko@saitti.net | Theo de Raadt | |
2001-05-15 | Make path length variables size_t. This fixes the problem where | Todd C. Miller | |
things like rm can't remove files with ridiculously long path names that were created by some script kiddie trying in vain to exploit something. Previously, the length was effectively constrained to USHRT_MAX due to one of the internal structs. Also, nuke FTS_CHDIRROOT since it never worked correctly and hasn't been documented for a long time. |