Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add clock_* and nanosleep manpages and links. | peter | 1997-05-12 | 1 | -2/+5 |
| | |||||
* | manpage for nanosleep(2) | peter | 1997-05-12 | 1 | -0/+96 |
| | | | | Obtained from: NetBSD (I think jtc@netbsd.org wrote it) | ||||
* | Man pages for clock_{get/set}time() and clock_getres(). | peter | 1997-05-12 | 1 | -0/+124 |
| | | | | Obtained from: kstailey@openbsd.org via OpenBSD sources | ||||
* | Use nanosleep() in all cases, not just in the reentrant libc (_THREAD_SAFE) | peter | 1997-05-12 | 1 | -70/+9 |
| | | | | version. | ||||
* | Create the clock_settime(), clock_gettime(), clock_getres() and nanosleep() | peter | 1997-05-12 | 1 | -3/+7 |
| | | | | syscall functions. | ||||
* | Add #include <sys/types.h> in synopsis, now required for libutil.h. | davidn | 1997-05-11 | 1 | -1/+2 |
| | |||||
* | Plug even more failure memory leaks | ache | 1997-05-10 | 1 | -6/+32 |
| | |||||
* | Cleanup | ache | 1997-05-10 | 1 | -21/+26 |
| | | | | | | Plug failure memory leaks Use issetugid now PR: 3492 | ||||
* | Back out all of yesterdays include file changes. | eivind | 1997-05-07 | 1 | -3/+0 |
| | |||||
* | Add syscalls for kernel linker. | dfr | 1997-05-07 | 1 | -2/+4 |
| | |||||
* | Make a lot of include-files self-contained. I excluded the patches changing | eivind | 1997-05-07 | 1 | -0/+3 |
| | | | | | | | | int's to gid_t and uid_t - should I commit these, too? Closes PR misc/2625. Submitted by: Julian Assange <proff@iq.org> | ||||
* | Changed all paths to be relative to src/lib instead of src/lib/libc | jb | 1997-05-03 | 27 | -98/+203 |
| | | | | | | | | | | so that all these makefiles can be used to build libc_r too. Added .if ${LIB} == "c" tests to restrict man page builds to libc to avoid needlessly building them with libc_r too. Split libc Makefile into Makefile and Makefile.inc to allow the libc_r Makefile to include Makefile.inc too. | ||||
* | This stub has not been required by libc for a long time. Nuke it. | jb | 1997-05-03 | 2 | -39/+2 |
| | |||||
* | Fix a bug that caused some false mismatches when both FNM_PATHNAME | jdp | 1997-04-29 | 1 | -1/+2 |
| | | | | | | and FNM_LEADING_DIR were specified and the pattern ended with "*". Example: pattern="src/usr.sbin/w*", string="src/usr.sbin/watch/watch.8,v". This should match, but did not. | ||||
* | Typo. | max | 1997-04-25 | 1 | -1/+1 |
| | | | | | PR: #3178 Submitted by: Josh Gilliam <soil@quick.net> | ||||
* | Add vfork(2) to SEE ALSO | ache | 1997-04-25 | 1 | -0/+1 |
| | |||||
* | Generate .S files for syscalls. This has many advantages: | bde | 1997-04-23 | 1 | -34/+9 |
| | | | | | | | | | | | | | | | - dependencies actually work (I need this to propagate some fixes in <machine/asm.h>) - the cpp pipeline goes away, so errors can't leak out of it and an ANSI cpp is automatically used. - it's simpler - standard rules get used instead of repetitive special rules. (This showed bugs in the strip steps in the standard rules. The wrong strip flag was also used for *.po here.) Removed some ${ECHO}s and `@'s. Normal make echoing of what is being done is now not much more verbose than the echo messages were, and is more useful. | ||||
* | FIxed the cleanup. I forgot to leave stdin alone in the usual (!twoway) | bde | 1997-04-22 | 1 | -1/+2 |
| | | | | case. | ||||
* | Clean-up my modification of popen.c for vfork. Bruce's (this) is better. | dyson | 1997-04-20 | 1 | -10/+12 |
| | | | | Submitted by: Bruce Evans <bde@freebsd.org> | ||||
* | Use separate routines for memmove() and memcpy(). This lets me drop | bde | 1997-04-20 | 1 | -0/+2 |
| | | | | | | | the (buggy) support for alternative entry points. ALTENTRY() was only used for memmove(). Optimizing for space was particularly silly because memcpy() is rarely used (gcc normally inlines it). Obtained from: NetBSD | ||||
* | Use separate routines for memmove() and memcpy(). This lets me drop | bde | 1997-04-20 | 2 | -94/+4 |
| | | | | | | | | the (buggy) support for alternative entry points. ALTENTRY() was only used for memmove(). Optimizing for space was particularly silly because memcpy() is rarely used (gcc normally inlines it). Obtained from: NetBSD | ||||
* | Merged with the 1996/11/12 NetBSD version: | bde | 1997-04-20 | 1 | -10/+24 |
| | | | | | | | | | | | | | | | - use a slightly less bogus copyright. This file was never contributed to Berkeley. It still claims to be copright by the Regents. - use <machine/asm.h> instead of "DEFS.h". - use RCSID($Id$) instead of explicit assembly code and messy ifdefs. The rcsid won't be put into the object file until we make RCSID() non-null. NetBSD uses a LIBC_SCCS ifdef here. We used a LIBC_RCS instead, but I want RCSID() to be controlled directly by LIBC_RCS (actually by LIB_RCS). This is the only difference with the NetBSD version. - added ifdefs to support generation of memcpy() and memmove(). The other changes are "while I'm here" to get this. - improved style of the copy backwards case. | ||||
* | Fixed long lines. | bde | 1997-04-19 | 2 | -16/+18 |
| | | | | | | Removed unused macros CALL() and ASMSTR. Reviewed by: jdp | ||||
* | Fixed #include and/or prototype bugs in synopsis. | bde | 1997-04-19 | 3 | -5/+5 |
| | |||||
* | Fix punctuation: "it's" -> "its" | danny | 1997-04-17 | 1 | -2/+2 |
| | |||||
* | Fix the problem in popen that makes correct vfork semantics fail. | dyson | 1997-04-16 | 1 | -6/+11 |
| | | | | | | Specifically, popen modifies a variable "pdes[1]" in the child in such a way that it breaks code in the parent (due to the address space sharing.) | ||||
* | Second stage of moving this to in <machine/asm.h>: just include | bde | 1997-04-15 | 1 | -82/+2 |
| | | | | <machine/asm.h> here. | ||||
* | Fixed missing const. Include <unistd.h> so that the function type gets | bde | 1997-04-14 | 1 | -1/+3 |
| | | | | | checked. Submitted by: partly by roberto | ||||
* | Fixed another prototype bug in synopsis. | bde | 1997-04-14 | 1 | -1/+1 |
| | |||||
* | Fix typo. | davidn | 1997-04-13 | 1 | -1/+1 |
| | |||||
* | Implement two new keywords and status flags for entries in /etc/ttys; | davidn | 1997-04-13 | 2 | -4/+70 |
| | | | | | | | TTY_NETWORK (network), TTY_DIALUP (dialup), which determine a basic connection type. TTY_DIALUP in particular will replace the old out of date heuristic "tty[dD]*" in login.c (and better than the current hard-coded method). | ||||
* | Add MLINKS for isdialuptty(3) & isnetworktty(3). | davidn | 1997-04-13 | 1 | -2/+4 |
| | |||||
* | Fixed #includes in synopsis. | bde | 1997-04-13 | 1 | -1/+4 |
| | |||||
* | Updated the LOCK_* #defines in the synopsis to be lexically identical | bde | 1997-04-13 | 1 | -4/+4 |
| | | | | with the (Lite1) ones in fcntl.h). | ||||
* | Fixed missing consts in synopsis. | bde | 1997-04-13 | 1 | -2/+2 |
| | |||||
* | Fixed #include and/or prototype bugs in synopsis. | bde | 1997-04-13 | 4 | -6/+6 |
| | |||||
* | Fixed wrong #include in synopsis. | bde | 1997-04-13 | 1 | -1/+1 |
| | |||||
* | Fixed #include and/or prototype bugs in synopsis. | bde | 1997-04-13 | 4 | -10/+21 |
| | |||||
* | Fixed #include and/or prototype bugs in synopsis. | bde | 1997-04-13 | 10 | -13/+26 |
| | |||||
* | Fixed wrong/incomplete #includes in synopsis. | bde | 1997-04-13 | 1 | -1/+1 |
| | |||||
* | Fixed wrong function return type in synopsis. | bde | 1997-04-13 | 1 | -1/+1 |
| | |||||
* | Don't use literal semicolons in .Fn macro invocations. | bde | 1997-04-13 | 13 | -13/+13 |
| | |||||
* | Support GLOBAL style tags. | jkh | 1997-04-13 | 1 | -9/+0 |
| | |||||
* | Fixed missing #include in synopsis. | bde | 1997-04-11 | 1 | -0/+1 |
| | |||||
* | Fixed return type of __syscall() in synopsis. | bde | 1997-04-11 | 1 | -3/+3 |
| | | | | Don't quote "..." in synopsis. Quoting here is unnecessary and unusual. | ||||
* | Fixed missing const(s) or #include(s) in synopsis. | bde | 1997-04-11 | 13 | -12/+18 |
| | |||||
* | Fixed synopsis (the #include was bogus and the return type for brk() was | bde | 1997-04-11 | 1 | -2/+2 |
| | | | | wrong). | ||||
* | Fixed missing header in synopsis. | bde | 1997-04-11 | 1 | -0/+1 |
| | |||||
* | Fixed synopsis (prototype was missing a const). | bde | 1997-04-11 | 1 | -1/+1 |
| | |||||
* | Don't even think about processing bogus domain names here. | wpaul | 1997-04-10 | 1 | -1/+5 |
| |