Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-05-16 | Wrap some functions, labels, and variables in #ifdefs corresponding | Ray Lai | |
to #ifdefs where they are used. Found by lint by bret dot lambert at gmail. OK deraadt@. | |||
2007-05-15 | fix some lint 'xxx used, but not defined' warnings by properly adding | Otto Moerbeek | |
stuff to LSRCS | |||
2007-05-12 | Document errno usage. From Tobias Stoeckmann. | Ray Lai | |
Earlier diff OK jmc@, with nit by otto@. | |||
2007-05-12 | Use size_t for strlen results. | Ray Lai | |
OK moritz@. | |||
2007-05-12 | Clean up macros according to style. From tbert <bret dot lambert at gmail>. | Ray Lai | |
OK moritz@ and jaredy@. | |||
2007-05-10 | grammar, | Marc Espie | |
okay jmc@ | |||
2007-05-10 | document net.inet.tcp.keepinittime; | Jason McIntyre | |
spotted by Daniel Ouellet; help/ok claudio | |||
2007-05-10 | Use syslog_r instead of syslog in getaddrinfo. Slowly making | Ray Lai | |
getaddrinfo reentrant. OK millert@ and deraadt@. | |||
2007-05-03 | Enable support for > 512MB of physical memory on mips64 systems, by using | Miod Vallat | |
XKPHYS instead of KSEG[01] for direct mappings. Then, detect memory above 256MB on O2 by poking at the CRIME registers (ARCbios will not report memory above 256MB, which is mapped above 1GB physical, to the system), and add it to the UVM managed memory. Tested on r5k, rm5200 and r10k with and without more than 256MB, matching hinv reports in all cases. CRIME memory decoding based on a diff from kettenis@ in december 2005. | |||
2007-05-02 | macros at start of line require a `.'; | Jason McIntyre | |
2007-05-02 | Document the lack of error return value in arc4random. | Pierre-Yves Ritschard | |
Sync the documentation in getpid with arc4random's format. | |||
2007-05-01 | lint 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-01 | file descriptors are ints. make branch an int too for better structure | Kurt Miller | |
allignment. okay marc@ | |||
2007-04-27 | more lint warning reductions. use int for all priority vars. okay marc@ | Kurt Miller | |
2007-04-27 | fix minor nit with previous commit | Kurt Miller | |
2007-04-27 | fix thread_continuation_t typedef and use passed curthread instead of | Kurt Miller | |
calling _get_curthread() again. fixes some lint warnings. okay marc@ | |||
2007-04-27 | Remove unused function _thread_fd_unlock_owned() and | Kurt Miller | |
merge _thread_fd_unlock_thread() into _thread_fd_unlock(). okay marc@ | |||
2007-04-27 | Use rlimit nofiles max to size fd/fdp tables instead of cur. Fixes | Kurt Miller | |
applications that increase nofiles using setrlimit(2). ok marc@ | |||
2007-04-26 | remove unused var. okay marc@ | Kurt Miller | |
2007-04-20 | netbsd: stack sanity, leave the return PC alone | Martynas Venckus | |
ok kettenis@ | |||
2007-04-16 | ptr->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-14 | hide struct process from userland, allow kvm_proc to see it. | Marc Espie | |
okay miod@ | |||
2007-04-12 | move p_limit and p_cred into struct process | Ted Unangst | |
leave macros behind for now to keep the commit small ok art beck miod pedro | |||
2007-04-10 | Support for optional args separated with whitespace was removed | Todd C. Miller | |
some time ago--it caused too many problems. | |||
2007-04-10 | when kevent fails, the errno is a lot more interesting to print than -1 | Ted Unangst | |
2007-04-10 | new lines in error messages | Ted Unangst | |
2007-04-10 | Revert previous commit which introduced regressions in KDE. | Kurt Miller | |
2007-04-07 | Upon fork() set the child's view of the stored file status flags inherited | Kurt 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-06 | Add proper checks against fgets failure. From Charles Longeau. | Ray Lai | |
OK moritz@, millert@, and jaredy@. | |||
2007-04-01 | clarify return values, prompted by moritz; ok moritz jmc | Theo de Raadt | |
2007-03-30 | document accept can return EINTR. ok millert@ jmc@ | Kurt Miller | |
2007-03-28 | Add the cRLSign bit by default, so that certs generated using this file | Chad Loder | |
will be able to sign CRLs. OK reyk, hshoexer, millert | |||
2007-03-26 | do not doc the http parts | Theo de Raadt | |
2007-03-26 | do not ship the http parts for now; ok millert | Theo de Raadt | |
2007-03-25 | eliminate call to abort(), which is very bad in libs. I forgat how | Otto Moerbeek | |
this diff came into my tree, apologies for not naming the contributor. ok tedu@ deraadt@ | |||
2007-03-24 | rfork sh bits. | Miod Vallat | |
2007-03-22 | nicer MLINKS chunk | Theo de Raadt | |
2007-03-21 | Add missing const | Todd C. Miller | |
List evhttp stuff commented out, should probably get its own man page | |||
2007-03-21 | Add support for mounting arbitrary sessions, from Enache Adrian | Pedro Martelletto | |
OK deraadt@ mjc@ canacar@ krw@, with much input from Enache himself | |||
2007-03-21 | event_init() and event_dispatch() take void. Add commented out | Todd C. Miller | |
entries for undocumented functions to be filled in later, preferably by someone who uses libevent. | |||
2007-03-21 | fix a formatting issue found by reyk; | Jason McIntyre | |
2007-03-21 | Use arc4random() to generate random IDs. In the future we | Todd C. Miller | |
may want to consider using res_randomid() but since evdns.c checks for duplicates this is not strictly necessary. | |||
2007-03-21 | Document event_base_free(). OK jmc@ | Todd C. Miller | |
2007-03-20 | Remove duplicate definition of _POSIX_THREAD_ATTR_STACKSIZE and quiet | Kurt Miller | |
build warnings noticed by david@. okay millert@ marc@ | |||
2007-03-20 | remove some bogus *p from charles longeau | Ted Unangst | |
ok deraadt millert | |||
2007-03-20 | remove some bogus *p tests from charles longeau | Ted Unangst | |
ok deraadt millert | |||
2007-03-19 | +.Xr evdns 3 , | Jason McIntyre | |
2007-03-19 | further cleanup; | Jason McIntyre | |
2007-03-19 | add MLINKS for evdns_err_to_string() and evdns_nameserver_add(); | Jason McIntyre | |
2007-03-19 | clean up this page; | Jason McIntyre | |