summaryrefslogtreecommitdiffstats
path: root/lib (follow)
Commit message (Collapse)AuthorAgeFilesLines
* The digest in the example seems to have been generatedart2008-02-131-3/+3
| | | | | | by code that does not do zero padding. The example code does. Fix. millert@ ok
* bump Mdocdate for pages committed in "febuary", necessary becausejmc2008-02-111-2/+2
| | | | of a typo in rcs.c;
* Mention new HW_PHYSMEM64 and HW_USERMEM64 variables. Mark HW_PHYSMEM andkettenis2008-02-091-2/+14
| | | | HW_USERMEM as deprecated and point people towards HW_PHYSMEM64/HW_USERMEM64.
* Move carp load balancing (ARP/IP) to a simpler configuration scheme.mpf2008-02-051-12/+2
| | | | | | | | | | | | | | Instead of using the same IP on multiple interfaces, carp has to be configured with the new "carpnodes" and "balancing" options. # ifconfig carp0 carpnodes 1:0,2:100,3:100 balancing ip carpdev sis0 192.168.5.50 Please note, that this is a flag day for anyone using carp balancing. You'll need to adjust your configuration accordingly. Addititionally this diff adds IPv6 NDP balancing support. Tested and OK mcbride@, reyk@. Manpage help by jmc@.
* Relocate internal pipe file descriptor if newfd collides with it. Fixeskurt2008-02-021-7/+32
| | | | | bsd_auth(2) issue when compiled with threads. Reported by Joachim Wieland <joachim.wieland at credativ.de>. okay otto@ marc@
* More read/write result checking fixes to avoid unsigned comparisons vskrw2008-01-292-4/+4
| | | | | | -1. ok henning@ beck@ ray@
* Properly align stack such that code that uses SSE2 instructions doesn't crash.kettenis2008-01-281-3/+7
| | | | ok espie@, beck@
* - add missing libc locking functions for _thread_atexit_lock() andkurt2008-01-231-1/+18
| | | | _thread_atexit_unlock(). okay tedu@
* Use TCSAFLUSH instead of TCSANOW when turning echo back on so thatmillert2008-01-171-2/+2
| | | | | there is no chance of output that was written but still pending to be displayed. This is what the original getpass(3) did.
* update to tzcode2007k from elsie.nci.nih.govmillert2008-01-076-115/+100
|
* no more need for vadvise.oderaadt2008-01-051-2/+2
|
* crank libc and libpthread, because libc cannot build lint libraries anymore if a syscall is OBSOL..deraadt2008-01-052-4/+4
|
* - make arc4random*() functions thread safe. Use a custom spinlock functionkurt2008-01-018-48/+125
| | | | | | | | | | | instead of the generic pthread macros since free(3) uses __arc4_getbyte() when freeing small sized allocations and the generic pthread macros call malloc(3). - eliminate passing pointers to a static variable with global scope (rs) for additional code clarity and reduction. - shlib minor bumps for libc and libpthread due to new functions. From andreas@ with some bits from me. okay tedu@ marc@ w/some spot checking from millert@
* update to tzcode2007j from elsie.nci.nih.gov; mostly ANSIficationmillert2007-12-296-258/+207
|
* implement sysctls to report IP, TCP, UDP, and ICMP statistics andreyk2007-12-131-2/+14
| | | | | | | | change netstat to use them instead of accessing kvm for it. more protocols will be added later. discussed with deraadt@ claudio@ gilles@ ok deraadt@
* correct the STANDARDS section to mention clock_getres() instead ofbrad2007-12-091-3/+3
| | | | | | clock_setres(). ok jmc@ dlg@
* %hhd was being printed as if %hd was specifiedderaadt2007-11-281-11/+16
| | | | ok millert tedu
* remove unused functionchl2007-11-281-10/+1
| | | | ok otto@
* typos; ok jmc@martynas2007-11-271-2/+2
| | | | sys/dev/pci/pciide.c from naddy@
* make popen/pclose thread safe. closes library/5634. from and okay andreas@kurt2007-11-261-10/+23
|
* typos; ok jmc@martynas2007-11-261-2/+2
| | | | | sys/netinet/in_pcb.c and sys/net/bridgestp.c ok henning@ sys/dev/pci/bktr/* ok jakemsr@
* fix yacc/lex parallel file generationespie2007-11-241-3/+6
|
* make pthread vfork() not call fork(), but actually call vfork(). ourderaadt2007-11-203-6/+17
| | | | | | | vfork() has only one semantic: "parent stalls until child does execve or exit" and no other semantic. it is unfair to act as if pthread vfork() suddenly lacks that semantic. ok kurt millert kettenis beck
* copy in FILES from pw_lock.3 to vipw.8: as nick points out, it should atjmc2007-11-192-12/+20
| | | | | | | least document /etc/ptmp; while i'm at it, might as well tidy it up and make it consistent across these pages;
* remove unused zero length file.kurt2007-11-191-0/+0
|
* fix misleading comment; the _MUTEX_LOCK/_MUTEX_UNLOCK macros work withkurt2007-11-191-2/+2
| | | | both static and non-static mutexs.
* "arm" is not a valid .Dt arch; remove it, as this page is for bothjmc2007-11-172-6/+6
| | | | | | armish and zaurus quote >9 args to .Nd
* Put limits.h in front of stdlib.h as style(9) recommends.tobias2007-11-132-8/+8
| | | | OK millert@
* this is the recording source. rename 'source' to 'recsource' and bejakemsr2007-11-121-9/+15
| | | | sure to only use 'record.source' instead of possibly 'inputs.source'.
* implement SNDCTL_DSP_GETODELAYjakemsr2007-11-123-3/+9
| | | | | | bump minor version ok deanna@
* strtod may return HUGE_VAL on overflow, which is defined in math.h.tobias2007-11-111-2/+3
| | | | | | Therefore added math.h to SYNPOSIS. OK millert@
* Stash value of log_tag before calling closelog_r() and restore it after.millert2007-11-091-2/+6
| | | | | | When closelog() was modified to clear log_tag it inadvertantly made syslog_r() (which calls closelog_r at the end) clear log_tag as well. OK miod@ dhartmei@
* fix format stringchl2007-11-061-2/+2
| | | | ok ray@ gilles@
* malloc/memset -> callocchl2007-11-061-3/+2
| | | | ok ray@
* - when we need to do both AUDIO_SETINFO and AUDIO_GETINFO to emulatejakemsr2007-11-061-58/+78
| | | | | | | | | | | | | | a single OSS ioctl, return the return value and errno from from AUDIO_SETINFO if there was an error, since it's more informative than the return value and errno from AUDIO_GETINFO. also, don't bail if AUDIO_SETINFO fails, because OSS ioctls should return the current value of the parameter they are setting, even if there was an error. - avoid a possible (though highly unlikely) divide by zero in SNDCTL_DSP_GET[IO]SPACE. ok ratchov@
* sync the comments for struct stat w/ <sys/stat.h>;jmc2007-11-051-9/+9
|
* - sync the error descriptions w/ those in errlistjmc2007-11-051-18/+18
| | | | - escape "No" incase groff thinks it's a macro call
* Simplify some of the logic in fts_close(). Initially based on amillert2007-11-021-17/+14
| | | | diff from chl@. OK otto@ and chl@.
* Fix waitpid() idiom. Noticed by deraadt@millert2007-11-011-4/+3
|
* Add parentheses to avoid warning:chl2007-10-311-2/+2
| | | | | | "suggest parentheses around && within ||" ok millert@
* If we receive SIGTTOU when turning off echo, the process is alreadymillert2007-10-301-20/+27
| | | | | | | backgrounded. Do not print the password prompt in this case since the first read will result in the process receiving SIGTTIN. Fixes an issue where the password prompt would be displayed when readpassphrase() would not be able to read anything. OK deraadt@
* avoid intermediate files with same name (ie. a.out) for parallel makederaadt2007-10-301-8/+8
| | | | ok miod
* Repair FLT_ROUNDS operation. ok kettenis@miod2007-10-272-6/+6
|
* add missing dependencyespie2007-10-261-1/+2
|
* Make sure to use unique target names so that make -j does not break;miod2007-10-251-25/+25
| | | | feedback and ok espie@
* Change the syscall invocation sequences to no longer fetch the last fewmiod2007-10-242-8/+2
| | | | | | | | | | arguments from the stack, since the kernel will now copyin() them when necessary. This makes all system calls (but mmap()) slightly faster. WARNING! After this commit, your binaries must run against a kernel featuring m88k/m88k/trap.c r1.34 or better - i.e. a 4.1 or later kernel.
* Comment fix about time consumption of _gettemp.tobias2007-10-211-5/+2
| | | | | | FreeBSD did this in revision 1.20. OK deraadt@, krw@
* prettyderaadt2007-10-191-1/+2
|
* do not install them silentlyderaadt2007-10-191-3/+3
|
* synch expat major number with xenocara, and then some.espie2007-10-182-3/+4
| | | | activate it in the build.