summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Fix bugs in NgSendMsg() and NgSendAsciiMsg() where the wrong tokenarchie2001-10-251-2/+2
| | | | | | | value could be returned when the debug level was non-zero. Submitted by: Harti Brandt <brandt@fokus.gmd.de> MFC after: 5 days
* Change #include "DEFS.h" to <machine/asm.h>.peter2001-10-254-4/+4
|
* De-orbit DEFS.h - the other arches do not use it, and it got replacedpeter2001-10-2442-82/+35
| | | | | | with <machine/asm.h>. Reviewed by: bde
* Add __FBSDID.asmodai2001-10-241-3/+5
| | | | | Change __assert() function to print failing function name. This makes us C99 conforming.
* Add __FBSDID.asmodai2001-10-241-5/+10
| | | | | | Change __assert() function to print failing function name. #if 0 the sccsid block. This makes us C99 conforming.
* Help to recover from bad seek (i.e. negative or too big) happens beyondache2001-10-242-5/+12
| | | | | our pre-check control. Do the same way as refill.c does when it set __SERR, i.e. clear read and ungetc buffers. Clear EOF flag too.
* Back out read buffer invalidating via __SMOD.ache2001-10-232-7/+2
| | | | | It was correct, but not needed because internal buffer cleared on each seek outside of it.
* Change comment explaining another usage of __SMODache2001-10-231-2/+2
|
* Disallow fseek() optimization in internal read buffer, if pointer is moved byache2001-10-231-0/+5
| | | | | seek. It means that beginning of read buffer becomes not the same as current file position.
* Partially port kvm to ia64 - virtual to physical translation is incomplete.dfr2001-10-231-0/+167
|
* Allow users to specify a command to use as remote command instead ofimp2001-10-234-6/+257
| | | | | | | | | | using rcmd directly. This has been in my tree for a long time, but we may need to sync with OpenBSD before MFC. Obtained from: openbsd PR: 15830 MFC after: 2 months
* Refer to chflags(2) instead of chflags(1) (since we're a section 2dd2001-10-231-3/+2
| | | | | | | manual page), fix capitalization, and remove chflags reference from SEE ALSO since the only time it's referenced is with an .Xr, anyway. Submitted by: bde
* Fix WAW dependency. p6 is written in the syscall epilogue.peter2001-10-221-0/+1
|
* Fix a few more dependancy violations.dfr2001-10-221-3/+3
|
* In the words of the submitter:deischen2001-10-211-2/+10
| | | | | | | | | | | | | In libc_r, if _FDLOCKS_ENABLED is not defined, there is no guarantee in many of the sycall wrappers that _thread_fd_table[fd] is initialized. This causes problems for programs that pass in file descriptors and execve() another program; when the exec'ed program tries to do an fcntl() or other syscall on the passed-in fd, it fails. Add calls to initialize the FD table entry for _thread_fd_lock and _thread_fd_lock_debug. Submitted by: Peter S. Housel <housel@acm.org>
* Implement setjmp, longjmp, sigsetjmp and siglongjmp.dfr2001-10-203-104/+53
|
* Add __divdf3(), __divsf3() and __infinity[].dfr2001-10-204-1/+296
| | | | Obtained from: Intel (for the divide code)
* mdoc(7) police: join OS version with the corresponding macro.ru2001-10-191-2/+2
|
* Just use RSYSCALL.ru2001-10-192-4/+2
|
* signanosleep(2) hasn't existed since 1998.ru2001-10-192-2/+0
|
* Add NO_WERROR so the build won't die because of discarded qualifiersdes2001-10-191-0/+2
|
* Back out part of previous commit which was gcc-centricdes2001-10-191-2/+2
|
* s/kernal/kernelalfred2001-10-192-2/+2
|
* Add library exposed by KDE's use if this module.markm2001-10-181-0/+2
|
* Tons of type, style and warning fixes that have been rotting in my tree fordes2001-10-185-70/+101
| | | | | ages - some of which wouldn't be necessary if gcc wasn't broken or TPTB were willing to do something (-fno-builtin) about it.
* Use the new SIOCGIFINDEX ioctl to efficiently map a name to an index.jlemon2001-10-171-2/+22
| | | | | If the syscall fails, fall back on the old method as a compatability measure.
* Fix reference to aio_read, should be aio_writealfred2001-10-161-1/+1
|
* Make this Makefile suitable for sparc64.robert2001-10-151-2/+5
|
* Define the types iaddr_t and saddr_t for sparc64.robert2001-10-151-0/+4
|
* Match parenthesis and don't give names to return values.dd2001-10-151-3/+2
| | | | PR: 31214
* Add EFI GPT (238, 0xEE) and EFI System Parition (239, 0xEF)peter2001-10-151-0/+2
|
* Fixed style bugs in previous commit.bde2001-10-151-15/+15
|
* link(2) may fail with EPERM if name1 is immutable or append-only.dd2001-10-141-1/+4
| | | | | PR: 31025 Submitted by: Tim Singletary <tsingle@vetinsite.com>
* Make this compile on ia64.dfr2001-10-141-25/+46
|
* Add warning about zeroing-out the socket structure before populating it.dillon2001-10-131-0/+4
|
* Removed most of the zombie man pages in libm. All relevant parts havebde2001-10-1326-3333/+0
| | | | been copied to msun/man (most of them long ago without proper history).
* Fixed missing quoting of >= (in ceil.3) and <= (in floor.3) by reverting tobde2001-10-132-7/+7
| | | | | | | describing these operators in English. This completes the fix in rev.1.3 (rev.1.2 got this wrong by describing wrong operators in English). Fixed bitrot and improved English in the DESCRIPTION section.
* Fixed missing quoting of [-1, +1].bde2001-10-132-2/+4
| | | | Submitted by: phantom
* Use ".Lb libm" where it will have an effect (not just in the zombie manbde2001-10-1326-0/+52
| | | | | | pages in libm). Submitted by: phantom
* Backed out "Compensate for header dethreading [mistakes]" mistakes inbde2001-10-131-2/+0
| | | | alpha files too.
* Note that strncmp() will not compare characters after a NUL character.mike2001-10-111-1/+8
| | | | | | | Add a missing word. Bump document date. Inspired by: IEEE Std 1003.1-200x (Draft 7) MFC after: 3 days
* Clarify that strnstr() will stop searching after in encounters a NULmike2001-10-111-5/+8
| | | | character. Bump document date. Add a missing comma.
* - Bump document date for eaccess(2) addition.ru2001-10-111-27/+35
| | | | | | | | - Mention ``eaccess'' in the NAME section. - Use intro(2) terminology. - Markup fixes. Reviewed by: rwatson
* Change to track the new calling convention for execve. This version onlydfr2001-10-111-17/+3
| | | | needs one line of assembler to initialise gp.
* Fix the phrase about "both files", which must be leftyar2001-10-111-1/+3
| | | | | | | from login(3). This page, logwtmp(3), speaks of only one file -- wtmp(5). MFC after: 1 week
* Fix SysV Semaphore Handling.mr2001-10-112-27/+124
| | | | | | | | Updated by peter following KSE and Giant pushdown. I've running with this patch for two week with no ill side effects. PR: kern/12014: Fix SysV Semaphore handling Submitted by: Peter Jeremy <peter.jeremy@alcatel.com.au>
* Shared libraries from 4.4-FreeBSD needed for proper binary compatibility.obrien2001-10-105-14837/+22933
|
* Compensate for "Compensate for header dethreading" by backing it out.bde2001-10-1021-42/+0
|
* getnetbyaddr() should be serviced by the "networks" database.ru2001-10-101-1/+1
|
* Adjust so that we don't use relocations which can't exist in a shareddfr2001-10-104-5/+10
| | | | library.
OpenPOWER on IntegriCloud