Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-05-13 | Add an implementation of memmem() -- from FreeBSD with some tweaks. | Antoine Jacoutot | |
Requires a libc minor bump, committing now so that we have up-to-date snapshots for the upcoming hackathon. joint work with millert@ man page bits ok jmc@ input and ok millert@, guenther@, deraadt@ | |||
2013-05-10 | Update SYNOPSIS and add STANDARDS | Philip Guenther | |
2013-05-10 | Update STANDARDS | Philip Guenther | |
2013-05-10 | Clarify behavior of SA_NOCLDWAIT | Philip Guenther | |
Tweak indentation in the synopsis feedback and ok jmc@, espie@ | |||
2013-05-08 | clarify when EACCESS can fail. if from is read only, you're out of luck. | Ted Unangst | |
failure to document this case noticed by Mike Small | |||
2013-05-08 | Don't declare ___start static, for gcc4 would optimize it out. | Miod Vallat | |
2013-05-08 | fix SEE ALSO; | Jason McIntyre | |
2013-05-08 | Update DESCRIPTION, ERRORS, SEE ALSO, and STANDARDS sections | Philip Guenther | |
(setpgid has *never* cared about euid in OpenBSD) | |||
2013-05-08 | Lists should be sorted by the normal alphabet, not my private one | Philip Guenther | |
Noted by jmc@ | |||
2013-05-08 | We have fdatasync() and pselect() now, so uncomment them in the list of | Philip Guenther | |
async-signal-safe functions. Also, add ppoll() as an async-s-s extension interface | |||
2013-05-07 | on failure errno is set as well | David Gwynne | |
2013-05-06 | If the lock is contended, such that the 'sc' fails, then we need to | Philip Guenther | |
reset the %2 register with _SPINLOCK_LOCKED before retrying. tobiasu@ hit the problem and figured out that ".set noreorder" is needed in the ASM | |||
2013-05-05 | since i386_{g,s}et_ioperm(2) are the same page, do not list them both in | Jason McIntyre | |
SEE ALSO; | |||
2013-05-05 | remove never implemented amd64 get/set ioperm sysarch. ok guenther | Ted Unangst | |
2013-05-05 | no need to cast calloc | Ted Unangst | |
2013-05-03 | Fix resetting MB_CUR_MAX when switching locales away from a UTF-8 locale. | Stefan Sperling | |
Patch by Vladimir Támara Patiño <vtamara@pasosdeJesus.org> ok mpi millert | |||
2013-04-30 | various small fixes; | Jason McIntyre | |
2013-04-30 | Do not take external buffers for storing DNS responses in the internal | Eric Faurot | |
async API. That is actually useless and it makes the code more complicated. The required buffers are always allocated when needed. | |||
2013-04-30 | copy input flags in result addrinfo structures. | Eric Faurot | |
2013-04-29 | Extend P_SIGSUSPEND handling in userret() to properly restore the | Matthew Dempsky | |
sigmask even if there are no pending signals under the temporary sigmask. Refactor existing select() and poll() system calls to introduce the pselect() and ppoll() system calls. Add rthread wrappers for pselect() and ppoll(). While there, update cancellation point comments to reflect recent fdatasync() addition. Minor bumps for libc and librthread due to new symbols. ok guenther, millert, deraadt, jmc | |||
2013-04-29 | use FD_CLOEXEC instead of 1; from David Hill | Okan Demirmen | |
ok otto | |||
2013-04-29 | use O_CLOEXEC with open() instead of open/fcntl; from David Hill | Okan Demirmen | |
ok otto | |||
2013-04-23 | Do a PC-relative relocation for _map rather than going through | Martynas Venckus | |
GOTPCREL. Uncovered after the binutils patch where it isn't optimized away at assembly and is forced to go through GOTPCREL. But _map is effectively a local variable. Found with cephes by guenther@. OK guenther@, kettenis@, deraadt@. | |||
2013-04-22 | Fixed typo. | Tobias Stoeckmann | |
ok jmc | |||
2013-04-21 | tweak a few comments | Ted Unangst | |
2013-04-21 | this man page is mostly about password hashing now (you really don't | Ted Unangst | |
want to be using DES) and some of the notes about the export controls are no longer so relevant. ok deraadt jmc | |||
2013-04-21 | wording fix; | Jason McIntyre | |
2013-04-20 | identify the argument containing the requested timeout, give arguments | Ted Unangst | |
better names, and reword time to duration for clarity | |||
2013-04-20 | Xr encrypt(1) to give people a hint if they just want a password string | Ted Unangst | |
2013-04-19 | add clock_gettime to see also. i think guenther was ok with this. | Ted Unangst | |
2013-04-17 | check return value of strdup(), fix mem leak in error path and take | Otto Moerbeek | |
into account that asr_use_resolver() can return NULL; ok tedu@ eric@ | |||
2013-04-17 | surround the error strings with quotes to clarify exactly which strings | Ted Unangst | |
the function is going to return. | |||
2013-04-17 | the tiniest of style tweaks | Ted Unangst | |
2013-04-17 | add some prototypes, casts, includes, parenthesis, and whatnot to | Ted Unangst | |
silence some warnings. | |||
2013-04-17 | silence some warnings by adding prototypes, casts, and headers as | Ted Unangst | |
appropriate. in regex, stop using the struct hack for a fixed size array | |||
2013-04-17 | evtag_marshal_timeval() truncates tv_sec to 32 bits, not passing the high | Theo de Raadt | |
bits. Mark it with XXX 2038. I think it is poor style to create a "marshalling layer" which throws away information someone might need. ok nicm, who will pass the news upstream and ask for them to fix it | |||
2013-04-17 | (long long) and %lld for big time_t | Theo de Raadt | |
ok nicm, who will pass it upstream | |||
2013-04-17 | use CLOCK_MONOTONIC, and repair future time_t overflow | Theo de Raadt | |
ok millert guenther | |||
2013-04-17 | give a timespec a name that is easier to verify | Theo de Raadt | |
2013-04-16 | Replace a realloc() + memcpy() with calloc() + memcpy(). | Todd C. Miller | |
We don't need to zero pfd but using calloc() gets us overflow protection for free. OK chl@ deraadt@ | |||
2013-04-15 | Remove CTL_USER hierarchy from sysctl() | Philip Guenther | |
(Use sysconf() or confstr() instead) ok miod@ millert@ | |||
2013-04-15 | Implement fdatasync() as a wrapper around fsync() | Matthew Dempsky | |
ok guenther, deraadt, jmc | |||
2013-04-15 | SHA-224 is to SHA-256 as SHA-384 is to SHA-512. It was added in a | Todd C. Miller | |
later revision of FIPS-180. OK miod@ jmc@ guenther@ djm@ | |||
2013-04-15 | Crank due to statfs changes and other inbound commits. | Joel Sing | |
2013-04-15 | Back out r1.17 and its subsequent conversion to poll. Otherwise | Todd C. Miller | |
we can get into a svc_getreq_poll() -> readtcp() -> svc_getreq_poll() loop until we run out of stack. If we want to avoid blocking on the new fd in readtcp() we need to poll() in svc_getreq_poll(), which will require a more elaborate change. OK tedu@ | |||
2013-04-14 | spacing | Theo de Raadt | |
2013-04-14 | typo; Benedikt Steinbusch | Stuart Henderson | |
2013-04-11 | Proper access of _THREAD_PRIVATE storage. Avoids a mem leak and reinit | Otto Moerbeek | |
of resolver context for each resolver call for single threaded programs. With and ok tedu@ ok eric@ | |||
2013-04-11 | Fix obviously stupid bug in the PIC_{LOAD,STORE} macros when compiling with | Miod Vallat | |
-fPIC. Harmless since we build libc -fpic so far. | |||
2013-04-09 | show what we parsed in debug output; ok guether@ | Otto Moerbeek | |