Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-05-30 | Switch to using unhyphenated VIA padlock mnemonics. VIA abandoned the | Matthew Dempsky | |
hyphen in their official programming guide sometime between 2003 and 2005, and Clang's integrated assembler does not support hyphenated mnemonics. ok jsg, deraadt | |||
2013-05-30 | Remove useless include. | Antoine Jacoutot | |
ok millert@ | |||
2013-05-29 | use paramaters instead of static storage in _gethostbyname() | Eric Faurot | |
2013-05-27 | Add minimal support for _res setup and update. | Eric Faurot | |
Change res_init() to initialize the _res structure on first call, and udpate the global async context if changes were made by the user. All resolver functions now call res_init() internally. fixes issue spotted by otto@ | |||
2013-05-22 | Sync with upstream. Fix buffer growing and memory allocation for wide | YASUOKA Masahiko | |
chars. Handle return of mbstowcs(). ok nickm | |||
2013-05-21 | Fix pty descriptor leak if fork() fails. | Matthew Dempsky | |
ok millert | |||
2013-05-19 | If pid<0, kill() won't fail with EPERM unless none of the target processes | Philip Guenther | |
could be signaled. | |||
2013-05-15 | typo: compare len against null needle, not haystack | Antoine Jacoutot | |
from Alf Schlichting ok millert@ | |||
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 |