Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-11-25 | use an unsigned char instead, to avoid lots of casts | Theo de Raadt | |
2013-11-25 | Use iswupper() for wide characters, not isupper(); ok deraadt | Stefan Sperling | |
2013-11-24 | most obvious unsigned char casts for ctype | Theo de Raadt | |
ok jca krw ingo | |||
2013-11-22 | unsigned char casts for ctype macros | Theo de Raadt | |
ok martynas | |||
2013-11-22 | doc nit okay millert@ | Marc Espie | |
2013-11-22 | obvious cast for isspace() | Theo de Raadt | |
2013-11-22 | don't use PAGE_SIZE, it is not portable. Ted can polish this after | Theo de Raadt | |
if he wants, but let us get the tree building. | |||
2013-11-21 | Fix a big memory leak in libfuse. | Sylvestre Gallon | |
Spotted by sthen@ With some input from stsp@ and tested by mpk@ and sthen@ ok sthen@, stsp@ | |||
2013-11-21 | remove dead assignment as reported by llvm. | Federico G. Schwindt | |
2013-11-21 | handle the fourth vararg value to sem_open | Ted Unangst | |
ok zhuk and presumably fgsch who just sent me a similar diff | |||
2013-11-21 | use -Wmissing-prototypes | Alexandre Ratchov | |
2013-11-20 | shared semaphore fixes. first, eliminate the sem inside a sem indirection. | Ted Unangst | |
it's not needed (mindless holdover from earlier prototype). everything is simpler and sem_init shared semaphores even work now (confirmed by sthen). correct the einval checks to not deref a pointer before the null check. in sem_open, if we created the semaphore, we need to initialize the spinlock. | |||
2013-11-20 | spelling fix; | Jason McIntyre | |
2013-11-20 | this implementation may now be capable of shared semaphores | Ted Unangst | |
2013-11-20 | more detail on error conditions | Ted Unangst | |
2013-11-20 | oops, forgot about unnamed shared sems | Ted Unangst | |
2013-11-20 | zhuk and i have slightly different styles. unify and consistify | Ted Unangst | |
2013-11-19 | tweak previous; | Jason McIntyre | |
2013-11-19 | move -Wxxx flags from CFALGS to COPTS | Alexandre Ratchov | |
suggested by deraadt | |||
2013-11-19 | slightly better | Ted Unangst | |
2013-11-18 | boilerplate documentation | Ted Unangst | |
2013-11-18 | interprocess semaphores ala sem_open. mostly following in the pattern | Ted Unangst | |
of shm_open. with some additions and fixes from zhuk. | |||
2013-11-18 | add missing prototypes | Alexandre Ratchov | |
2013-11-17 | Mark internal symbols as hidden. This removes symbols from the ABI, | Philip Guenther | |
albeit ones no one should be using, so major bump the shlib. ok kettenis@ ports testing by landry@ | |||
2013-11-16 | In getdiskbyname() set partition size with DL_SETPSIZE(). Make sure | Kenneth R Westerback | |
d_secperunith and p_offseth are set to 0 since they can't be read from disktab and lower 32 bits (d_secperunit and p_offset) are read directly from the input. | |||
2013-11-16 | _kvm_syserr() is printf-like too | Philip Guenther | |
2013-11-16 | ANSIfy a declaration | Philip Guenther | |
2013-11-16 | Prep for hidden visibility: move the vnode/file related function | Philip Guenther | |
declarations, including _kvm_getftype(), into a new header, kvm_file.h, so that we don't have to pull <sys/vnode.h> into all the .c files. No more extern function declaration in .c files. ok millert@ | |||
2013-11-15 | getpwnam_r() and getpwuid_r() reopen the passwd even when called with | Sebastian Benoit | |
setpassent(stayopen). Bug found and fixed by Erik Lax <erik-AT-halon-DOT-se> ok millert@ guenther@ | |||
2013-11-13 | Prefix by '_' symbols that are not part of the API. | Alexandre Ratchov | |
ok deraadt, guenther | |||
2013-11-13 | repair prototypes | Theo de Raadt | |
reviewed by chris | |||
2013-11-13 | fix_options() is not used by anything; remove API, crank major | Theo de Raadt | |
ok sthen | |||
2013-11-13 | document that ibuf_write() and msgbuf_write() can now return EAGAIN | Sebastian Benoit | |
from and with deraadt@ | |||
2013-11-13 | original bug diagnosed by sthen: automatic retry in msgbuf_write on | Sebastian Benoit | |
EAGAIN causes spinning. fix from claudio: "Let msgbuf_write return -1 with errno EAGAIN. The users then must check if this was the case and readd the event or poll again. The current handling in the imsg code is wrong for sure." ok gilles | |||
2013-11-13 | Remove redundant extern "C" {...}. ok deraadt@ | Jeremie Courreges-Anglas | |
2013-11-13 | Document the negative errno quirk used by callbacks in struct fuse_operations. | Stefan Sperling | |
ok syl | |||
2013-11-13 | use sysctl vm.psstrings to calculate stack bounds, rather than USRSTACK. | Theo de Raadt | |
long discussions with guenther, kurt, kettenis etc etc etc | |||
2013-11-13 | correct types for arguments to the x509 functions | Theo de Raadt | |
ok markus | |||
2013-11-13 | oops should not be static | Theo de Raadt | |
2013-11-13 | bring in proto | Theo de Raadt | |
2013-11-13 | bring in math.h to provide prototypes | Theo de Raadt | |
2013-11-12 | Trick the compiler that volatile temporary is used while raising | Martynas Venckus | |
the underflow. | |||
2013-11-12 | remove dead files | Eric Faurot | |
ok deraadt@ | |||
2013-11-12 | Declare __p1evll and __polevll protos in math_private.h instead of | Martynas Venckus | |
redeclaring each time in ld{80,128}. Pointed out by theo. | |||
2013-11-12 | put the _readdir_unlocked() prototype in an obvious place | Theo de Raadt | |
2013-11-12 | Add parentheses around comparison in operand of ^. Pointed out by theo. | Martynas Venckus | |
2013-11-12 | Add explicit braces to avoid ambiguous else. Pointed out by theo. | Martynas Venckus | |
2013-11-12 | Apply format __attribute__ to _kvm_err() and fix the errors that it detects. | Philip Guenther | |
Treat failure to KREAD teh pcredd or ucreds to be errors insteading of continuing with bogus data. ok deraadt@ millert@ | |||
2013-11-12 | ANSI prototypes | Theo de Raadt | |
2013-11-12 | a __fputwc_unlock() prototype was available in fvwrite.h, so use that | Theo de Raadt | |