summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2007-05-01lint warning corrections:Kurt Miller
- use the correct types - mark _thread_gc() w/ARGSUSED - fix a 'a cast does not yield an lvalue' okay marc@
2007-05-01file descriptors are ints. make branch an int too for better structureKurt Miller
allignment. okay marc@
2007-04-27more lint warning reductions. use int for all priority vars. okay marc@Kurt Miller
2007-04-27fix minor nit with previous commitKurt Miller
2007-04-27fix thread_continuation_t typedef and use passed curthread instead ofKurt Miller
calling _get_curthread() again. fixes some lint warnings. okay marc@
2007-04-27Remove unused function _thread_fd_unlock_owned() andKurt Miller
merge _thread_fd_unlock_thread() into _thread_fd_unlock(). okay marc@
2007-04-27Use rlimit nofiles max to size fd/fdp tables instead of cur. FixesKurt Miller
applications that increase nofiles using setrlimit(2). ok marc@
2007-04-26remove unused var. okay marc@Kurt Miller
2007-04-20netbsd: stack sanity, leave the return PC aloneMartynas Venckus
ok kettenis@
2007-04-16ptr->term_names can point into ptr->str_table, so don;t free that one.Otto Moerbeek
fixes PR #5447. Fix verifed to be equal to the ifndef NO_LEAK part of current ncurses.
2007-04-14hide struct process from userland, allow kvm_proc to see it.Marc Espie
okay miod@
2007-04-12move p_limit and p_cred into struct processTed Unangst
leave macros behind for now to keep the commit small ok art beck miod pedro
2007-04-10Support for optional args separated with whitespace was removedTodd C. Miller
some time ago--it caused too many problems.
2007-04-10when kevent fails, the errno is a lot more interesting to print than -1Ted Unangst
2007-04-10new lines in error messagesTed Unangst
2007-04-10Revert previous commit which introduced regressions in KDE.Kurt Miller
2007-04-07Upon fork() set the child's view of the stored file status flags inheritedKurt Miller
from the parent to all non-blocking. This prevents the child from restoring the file to be blocking upon close() and causing the parent to deadlock when it later attempts to utilize the blocking fd. Corrects the netbeans build failure caused by the jdk forkAndExec() function that replaces the std fd's before execvp(). okay marc@
2007-04-06Add proper checks against fgets failure. From Charles Longeau.Ray Lai
OK moritz@, millert@, and jaredy@.
2007-04-01clarify return values, prompted by moritz; ok moritz jmcTheo de Raadt
2007-03-30document accept can return EINTR. ok millert@ jmc@Kurt Miller
2007-03-28Add the cRLSign bit by default, so that certs generated using this fileChad Loder
will be able to sign CRLs. OK reyk, hshoexer, millert
2007-03-26do not doc the http partsTheo de Raadt
2007-03-26do not ship the http parts for now; ok millertTheo de Raadt
2007-03-25eliminate call to abort(), which is very bad in libs. I forgat howOtto Moerbeek
this diff came into my tree, apologies for not naming the contributor. ok tedu@ deraadt@
2007-03-24rfork sh bits.Miod Vallat
2007-03-22nicer MLINKS chunkTheo de Raadt
2007-03-21Add missing constTodd C. Miller
List evhttp stuff commented out, should probably get its own man page
2007-03-21Add support for mounting arbitrary sessions, from Enache AdrianPedro Martelletto
OK deraadt@ mjc@ canacar@ krw@, with much input from Enache himself
2007-03-21event_init() and event_dispatch() take void. Add commented outTodd C. Miller
entries for undocumented functions to be filled in later, preferably by someone who uses libevent.
2007-03-21fix a formatting issue found by reyk;Jason McIntyre
2007-03-21Use arc4random() to generate random IDs. In the future weTodd C. Miller
may want to consider using res_randomid() but since evdns.c checks for duplicates this is not strictly necessary.
2007-03-21Document event_base_free(). OK jmc@Todd C. Miller
2007-03-20Remove duplicate definition of _POSIX_THREAD_ATTR_STACKSIZE and quietKurt Miller
build warnings noticed by david@. okay millert@ marc@
2007-03-20remove some bogus *p from charles longeauTed Unangst
ok deraadt millert
2007-03-20remove some bogus *p tests from charles longeauTed Unangst
ok deraadt millert
2007-03-19+.Xr evdns 3 ,Jason McIntyre
2007-03-19further cleanup;Jason McIntyre
2007-03-19add MLINKS for evdns_err_to_string() and evdns_nameserver_add();Jason McIntyre
2007-03-19clean up this page;Jason McIntyre
2007-03-19provide MLINKS for evhttp_start() and evhttp_free();Jason McIntyre
2007-03-19tweaks;Jason McIntyre
2007-03-19Update to libevent-1.3b while retaining our local changes. beck@ OKTodd C. Miller
2007-03-19Get rid of useless #if 0 block, especially since the code is includedRay Lai
immediately after. OK millert@.
2007-03-15give _POSIX_THREAD_* defines a value of 1 so applications thatKurt Miller
conditionally compile code using these defines will work. okay tedu@, marc@, milllert@
2007-03-13Set the DN bit in the fpscr upon startup, to prevent faulting when loadingMiod Vallat
denormals. This is recommended by the manual, and is necessary for the gdb testsuite to pass; found by, discussed with, and ok kettenis@ (be sure to make includes before recompiling csu)
2007-03-07manual page update by Bruce M. Simpson <bms@FreeBSD.org> toJason McIntyre
reflect how shutdown() behaves with PF_INET and PF_INET6 sockets; help/ok millert otto
2007-03-05Remove _err() calls from getnetgrent.c. This is a minor API changeTodd C. Miller
as _ng_sl_add() now returns a value. The only consumer of that interface is netgroup_mkdb(8). Adapted from NetBSD. OK deraadt@
2007-03-03remove duplicate option; spotted by Igor SobradoJason McIntyre
2007-03-03Kernel crash dumps and associated libkvm bits for landisk.Miod Vallat
2007-03-02Move landisk to hardware floating point. At the moment the FPU context isMiod Vallat
always saved upon context switches, as FPU registers are heavily used for long long computations (don't ask). Gcc default to -m4. Credits to drahn@ otto@ and deraadt@ for feedback and help testing. Upgrade procedure if you don't want to use the damn snapshots: - build and install new kernel, reboot off it - build new gcc, do not install it yet - make includes - install new gcc - build and install lib/csu and lib/libc - make build