summaryrefslogtreecommitdiffstats
path: root/lib/libc
Commit message (Collapse)AuthorAgeFilesLines
* Add missing strings.phk1999-04-241-0/+7
| | | | | | PR: 11285 Submitted by: Chris Costello <chris@calldei.com> Reviewed by: phk
* Fix all the mipseb Makefiles. They were broken when I checked them inimp1999-04-228-6/+166
| | | | | | | | | | before. Added SYS.h for mipseb and mipsel. I now get part way through building libc in the cross environment that I have (along with pending mipse[bl] changes to the intree egcs) with these changes.
* Back out my change from 6 April PDT that added a new dlversion()jdp1999-04-222-33/+1
| | | | | | | function. It was an ill-considered feature. It didn't solve the problem I wanted it to solve. And it added Yet Another Version Number that would have to be maintained at every release point. I'm nuking it now before anybody grows too fond of it.
* Revise for KLD's.ghelmer1999-04-201-55/+8
| | | | Prompted-By: Nathan Ahlstrom <nrahlstr@winternet.com>
* vfsload maps into kldload only now, no more fork/exec of modload(8).peter1999-04-191-85/+1
|
* Document pread() and pwrite().dt1999-04-113-11/+68
| | | | Obtained from: NetBSD (mostly)
* Contains the paranik1999-04-101-9/+1
| | | | | | | | | | | | | | | Unlike other filesystem objects, symbolic links do not have an owner, group, access mode, times, etc. Instead, these attributes are taken from the directory that contains the link. The only attributes returned from an lstat() that refer to the symbolic link itself are the file type (S_IFLNK), size, blocks, and link count (always 1). This is bogus, and disagrees with the implementation and symlink(7). Removed it. PR: docs/10269 Submitted by: Tolik <tolik@sibptus.tomsk.ru>
* Various language and style concerns fixed.imp1999-04-091-11/+18
| | | | Noted by: bde
* Fixed missing include in synopsis.bde1999-04-096-21/+13
| | | | Fixed some mdoc usage errors.
* Add manpage link for dlversion(3).jdp1999-04-071-2/+3
|
* Add a new function dlversion() which returns the version number ofjdp1999-04-072-2/+34
| | | | | | the dynamic linker in the same form as __FreeBSD_version. This is mainly intended for checking the dynamic linker version during a make world.
* Fixed disordering in previous 2 commits. Fixed an English error.bde1999-04-051-5/+6
|
* Add wrappers for pread and pwrite syscalls.dt1999-04-046-11/+119
|
* Add mkstemps to the man page, and create a link for it.imp1999-04-042-2/+14
| | | | | Obtained from: OpenBSD Poked in the eye about committing new functions without a manpage: obrien
* Add mkstemps from OpenBSD. This has been in my tree for months andimp1999-04-041-7/+24
| | | | | | hasn't caused any problems until the egcs import. This fix breaks the world build, but my very next commit will remove mkstemps from the egcs build.
* Manpages for the KLD system calls.dfr1999-04-047-1/+450
| | | | | PR: docs/10412 Submitted by: Chris Costello <chris@calldei.com>
* Fix a macro name typo that made a word disappear.jdp1999-04-031-1/+1
|
* Disable the "Hint" option in phkmalloc as default. Recent VM systemphk1999-03-282-4/+4
| | | | | | | | | | | | changes have made this too expensive. This gains about 1.25% on worldstone on my SMP machine. Swap-less machines, for instance PicoBSDs, and machines which experience page-out trafic, check with top(1), will probably want to reenable this with: ln -s H /etc/malloc.conf Suggested by: alc (&dyson ?)
* Partial fix for the forking problem: if we can't access the master maps,des1999-03-271-4/+11
| | | | | | try again with the unrestricted map. PR: bin/10821
* Rename when building libc_r.dfr1999-03-251-2/+2
|
* Fix a (relatively harmless) braino. I confused myself over the for() looppeter1999-03-241-3/+2
| | | | | | | | | that counted the number of elements in argv. The counter is incremented in the next-iteration section of the loop, not the body, so at termination it's already "counted" the element that failed the continuation test - in this case the NULL argv terminator. Noted by: bde
* Remove last remaining references to malloc/realloc and functions thatpeter1999-03-231-50/+40
| | | | | | | | | | | | | | | | | | | | | | | call them. All the execX() libc functions should be vfork() safe now. Specifically: - execlp() does the argument count-and-build into a vector from alloca (like the others) - buildargv() is no longer used (and gone). - execvp() uses alloca/strcpy rather than strdup(). - the ENOEXEC handler uses alloca rather than malloc. - a couple of free() calls removed - alloca works on the local stack and the allocations are freed on function exit (which is why buildargv wasn't useful - it's alloca() context would disappear on return). Along the way: - If alloca() fails (can it?), set errno = ENOMEM explicitly. - The ENOEXEC recovery routine that trys again with /bin/sh appeared to not be terminating the new argv[] array for /bin/sh, allowing it to walk off the end of the list. I dithered a bit about using alloca() even more as it's most commonly associated with gcc. However, standalone portable (using malloc) and machine-specific assembler alloca implementations appear to be available on just about all the architectures we're likely to want to port to. alloca will be the least of our problems if ever going to another compiler.
* Add a sysctl variable which can help stop chroot(2) escapes.phk1999-03-231-2/+29
| | | | | | | | | | | | | | | kern.chroot_allow_open_directories = 0 chroot(2) fails if there are open directories. kern.chroot_allow_open_directories = 1 (default) chroot(2) fails if there are open directories and the process is subject of a previous chroot(2). kern.chroot_allow_open_directories = anything else filedescriptors are not checked. (old behaviour). I'm very interested in reports about software which breaks when running with the default setting.
* Typo fix.jkoshy1999-03-231-1/+1
| | | | | PR: docs/10733 Submitted by: Steve Coltrin <spcoltri@io.com>
* Don't be so selective about which errors cause us to continue andimp1999-03-211-7/+2
| | | | | | | | which ones cause us to fail. Now all open errors on the databse file will cause the next file in the list to be tried. Submitted by: Arne Henrik Juul <arnej@math.ntnu.no> PR: 4585
* EACESS -> EACCESalex1999-03-153-5/+5
|
* Add support for long long modifier (e.g. %llx, %lld).dfr1999-03-111-3/+9
| | | | Reviewed by: bde
* PID_MAX is now 99999.roberto1999-03-101-1/+1
| | | | | PR: docs/10530 Submitted by: Ben Smithurst <ben@scientia.demon.co.uk>
* Explain ENXIO error status with respect to fifos.ghelmer1999-03-071-0/+4
| | | | PR: docs/8559
* Don't bogotify the synopsis by attempting to describe err_set_file() there.bde1999-03-051-11/+19
| | | | Fixed some disorder.
* Fixed references to unmount(2) specified as umount.alex1999-03-051-4/+4
| | | | | Submitted by: Markus Friedl <markus.friedl@informatik.uni-erlangen.de> via OpenBSD
* Fixed disordering and incoinsistent style in previous commit.bde1999-03-051-3/+3
|
* The pseudocode in the synopsis didn't come close to actuallybde1999-03-051-4/+6
| | | | | | | | | compiling, since <stdio.h> correctly doesn't declare off_t although the pseudo-prototypes for the new fseeko() and ftello() functions use it. Handle this like the corresponding problem for va_list versus the vprintf() family. Fixed some English errors.
* Don't use undocumented markup "{}". Use 32767 instead of LINK_MAX tobde1999-03-051-4/+3
| | | | give bug for bug compatibility with intro.2.
* Backed out most of rev.1.4. I didn't submit it; I only submitted abde1999-03-051-7/+8
| | | | | | | | | request for it something like it. It was poorly worded and too far from both POSIX wording and normal (mal)practice by referring to sysconf(_SC_NGROUPS_MAX) instead of {NGROUPS_MAX} or NGROUPS. POSIX.1 uses curly braces to mark up "symbolic constants or limits [that may be] defined in certain headers". Since we don't document this markup, don't use it. Just use NGROUPS_MAX.
* Use sysctlbyname() instead of sysctl().phk1999-03-051-6/+2
|
* Forgot to add $Id$ and change date in previous commit.bde1999-03-051-1/+2
|
* Changed the type of quotactl()'s 4th arg from `char *' to `void *'bde1999-03-051-1/+1
| | | | | | | | | so that non-sloppy applications can call it without using disgusting casts to avoid warnings. The 4th arg is sort of varargs -- it must sometimes represent a filename, sometimes a struct pointer, and is sometimes unused. The arg type is still caddr_t in the kernel. Obtained from: mostly from NetBSD
* These were missing from the previous commit.imp1999-03-0312-0/+12
|
* Bring in initial libc support for mips. These files were taken fromimp1999-03-0348-0/+2684
| | | | | the OpenBSD tree and should be considered preliminary. They are here to facilitate building of the tree.
* Correct synopsys: getsubopt is declared in unistd.h, not stdlib.h.ghelmer1999-03-021-1/+1
| | | | PR: docs/9376
* Mention that getservbyport requires its port parameter to be inghelmer1999-03-021-2/+3
| | | | | | network byte order. PR: docs/9376
* Corrected use of backslash escaping in sample code.ghelmer1999-02-271-3/+3
| | | | | PR: docs/10284 Submitted by: Alfred Perlstein <bright@cygnus.rush.net>
* Decapitalize function name by prepending with word "The".hoek1999-02-261-3/+6
| | | | PR: docs/10247
* Fixed tab lossage in previous commit.bde1999-02-251-2/+2
|
* remove ctype.c - unused and confusingache1999-02-232-74/+2
|
* Add a note about ELF executables requiring to be linked with -export-dynamicjkoshy1999-02-171-0/+8
| | | | for dlsym() searches inside the executable to work.
* EOPNOTSUPP also applies to fchflags().bde1999-02-151-0/+3
|
* Mention that chflags can fail with EOPNOTSUPP.des1999-02-141-0/+2
|
* remove BUGS section, now behaviour is predictable enoughache1999-02-131-2/+0
|
OpenPOWER on IntegriCloud