summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | If an attempt is made to LISTEN for a service tag that's already beingbrian2001-07-251-14/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | LISTENed for, return EEXISTS. Only match the magic "*" service tag if no other LISTEN service tags match. Require an explicit LISTEN for an empty service tag in order to match empty service requests. Approved by: julian MFC after: 3 days
* | Move netgraph to i386 only. Which is where it works only.mjacob2001-07-251-1/+1
| |
* | IFT_8021_VLAN -> IFT_L2VLAN per if_vlan_var.h rev 1.9. With this changebrooks2001-07-253-3/+3
| | | | | | | | LINT compiles, but doesn't link.
* | Allow ng_split to be compiled in staticly.brooks2001-07-254-0/+4
| | | | | | | | MFC after: 7 weeks
* | Make ng_split part of the module building process.brooks2001-07-241-0/+1
| | | | | | | | MFC after: 7 weeks
* | General cleanup providing better style(9) conformance and generallybrooks2001-07-242-91/+47
| | | | | | | | | | | | | | | | | | | | improved readability. The two real functional changes are that netgraph now sees this as the "split" node type rather then the "ng_split" node type and that meta data is passed through without processing rather then being dropped. Reviewed by: jhb, julian MFC after: 7 weeks
* | merged interface cloning support.brooks2001-07-242-2/+2
| |
* | Remove non-existent (missing?) fonts.alias from beforeinstall: targetache2001-07-241-1/+1
| |
* | Add -I${.OBJDIR} to pick generated font*.hache2001-07-241-1/+1
| |
* | Eliminate the panic, reported by Daniel Sobral, which occurs whenfenner2001-07-241-17/+36
| | | | | | | | | | | | | | vlan_unconfig()-ing an interface on which multicast groups have been joined. Instead, keep the list of groups around (and, in fact, allow changing of the membership list) and re-join them when the vlan interface is reassociated with a lower level interface.
* | correct description of `vpp' for mknod/symlink: they are actuallyassar2001-07-241-2/+2
| | | | | | | | returned locked
* | Expland `mymalloc' with malloc + error checking.obrien2001-07-244-17/+10
| |
* | Remove the misnamed `xmalloc' and replace its uses with the realloc (alongobrien2001-07-241-19/+11
| | | | | | | | with error checking) that it actually was.
* | Remove the misnamed `emalloc' and replace its uses with calloc (alongobrien2001-07-241-19/+13
| | | | | | | | with error checking) which it effectively was. (malloc+memset)
* | Remove emalloc and expand to the malloc + error checking it was, where used.obrien2001-07-243-20/+9
| |
* | Remove the misnamed `emalloc' and replace its uses with the calloc (alongobrien2001-07-243-26/+14
| | | | | | | | with error checking) that it actually was.
* | Remove the local basename in favor of the libc version.obrien2001-07-245-43/+22
| | | | | | | | Remove xmalloc and xstrdup and do the error checking at the place of use.
* | Expland the emalloc to do the testing at the place of mallocing.obrien2001-07-241-16/+6
| |
* | Expand emalloc in-place, and remove the `rname' basename() implimenation.obrien2001-07-242-24/+6
| |
* | Expand xmalloc in-place, along with xrealloc; which wasn't even ANSI in itsobrien2001-07-245-59/+56
| | | | | | | | implementation.
* | Replace the local `rname' with the cannonical `basename'.obrien2001-07-244-13/+11
| |
* | Expand x{malloc,calloc,realloc,strdup} in-place.obrien2001-07-248-79/+169
| | | | | | | | (even found some unchecked naked uses)
* | pass any NS/NA/toobig.ume2001-07-241-19/+10
| | | | | | | | | | Requested by: itojun MFC after: 5 days
* | Remove redundant mtu/mru/speed settingsbrian2001-07-241-6/+0
| | | | | | | | MFC after: 6 days
* | yp_errno is an `enum ypstat`.dd2001-07-241-1/+1
| | | | | | | | | | | | PR: 29190 Submitted by: Cristan Szmajda <cristan@unsw.edu.au> Reviewed by: md5(1)
* | yyerror() is a printflike functionkris2001-07-241-1/+1
| | | | | | | | MFC after: 1 week
* | Clean up the code a bit:tg2001-07-2432-181/+205
| | | | | | | | | | | | | | - add $FreeBSD$; - remove unused variables; - add missing headers and prototypes; - -Wshadow.
* | Rewrite video emulation. Features:tg2001-07-2416-1583/+3136
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - slightly more accurate VGA hardware emulation; - more int 10 functions, especially wrt to palette handling; - first shot at graphics support; - mode switching. Bugs: - graphics too slow; - only 16 color modes work for now; - works only under X, and only with 16 bit TrueColor visuals; - far from being genuinely useful (I can play an old EGA game now, though (mahjongg.exe)). Also, the code has been cleaned up a bit (more to come in a separate commit).
* | sprintf -> snprintfkris2001-07-241-1/+2
| | | | | | | | | | Obtained from: OpenBSD MFC After: 1 week
* | The previous delta duplicated a significant amount of informationsheldonh2001-07-241-122/+4
| | | | | | | | | | | | | | | | already found in the sigaction(2) manual. As discussed with the committer of that delta, cross-reference the list in sigaction(2) instead of duplicating the list of functions that are safe for use within signal handlers.
* | Replace strncpy -> strlcpykris2001-07-241-6/+3
| | | | | | | | | | Obtained from: OpenBSD MFC after: 1 week
* | Sync to OpenBSD (update comment and minor style change).kris2001-07-242-6/+8
| | | | | | | | | | Obtained from: OpenBSD MFC after: 1 week
* | Sync to OpenBSD:kris2001-07-241-2/+23
| | | | | | | | | | | | | | | | | | | | | | | | Clarify that if strlcat() does not find a NUL within siz byte it will not NUL terminate either. Document boundary condition when size < strlen(dst). "of", not "on" (from Henric Jungheim) Obtained from: OpenBSD MFC After: 1 week
* | Added the txp driver into the list for SMALL kernel.kato2001-07-243-0/+3
| |
* | Merged from sys/i386/conf/GENERIC revision 1.315.kato2001-07-241-0/+1
| |
* | - Do not call VGLEnd() and exit() to terminate the programyokota2001-07-241-2/+15
| | | | | | | | | | | | | | | | | | immediately when a signal is caught. Instead, defer program termination until the next call to VGLCheckSwitch(). Otherwise, the video card may not be restored correctly if the signal is seen while inside libvgl functions. MFC after: 1 week
* | The delta introduced in the previous revision and attributed to thesheldonh2001-07-241-2/+4
| | | | | | | | | | OpenBSD project had grammar problems and made no attempt to motivate the practice of saving errno. Replace it with something better.
* | Add ports for sshell, ldaps, rsync, ftps-{data|control}, ircs, anddougb2001-07-241-6/+19
| | | | | | | | | | | | | | | | | | | | | | correct some ommissions of udp ports. Update IANA web page. Clean up/correct some comments. I went a little further than the PR. PR: conf/23416 Submitted by: Rudolf Cejka <cejkar@dcse.fee.vutbr.cz>
* | mdoc(7) police: remove hard sentence breaks and wrap lines over 80dd2001-07-241-2/+4
| | | | | | | | characters.
* | Fix or add types where appropriate.dd2001-07-241-2/+11
| |
* | This commit was generated by cvs2svn to compensate for changes in r80260,kris2001-07-241-3/+18
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | Import updated/clarified license for tcp_wrappers.kris2001-07-241-3/+18
| | | | | | | | | | | | | | | | | | | | | | | | +* Redistribution and use in source and binary forms, with or without +* modification, are permitted provided that this entire copyright notice +* is duplicated in all such copies. Obtained from: ftp://ftp.porcupine.org/pub/security/tcp_wrappers_license
* | | Improve markup.dd2001-07-241-3/+5
| | | | | | | | | | | | Reviewed by: ru
* | | Note that this list should follow the docproj dependency list as muchdd2001-07-241-1/+2
| | | | | | | | | | | | as possible.
* | | eps2png -> pepsdd2001-07-241-1/+1
| | | | | | | | | | | | Submitted by: Alexey V. Neyman <avn@any.ru>
* | | Finish the sweep of changes that fix doubled 'the'.sheldonh2001-07-242-2/+2
| | |
* | | Add the list of signal-handler safe functions here too, so people cankris2001-07-241-0/+123
| | | | | | | | | | | | | | | | | | | | | find it more easily Obtained from: OpenBSD MFC After: 1 week
* | | Add a few more functions which are safe to call from signal handlers,kris2001-07-241-0/+20
| | | | | | | | | | | | | | | | | | | | | and give a bit of advice. Obtained from: OpenBSD MFC After: 1 week
* | | Unify SEE ALSO sections of the kld*.2 and mod*.2 manpages.yar2001-07-249-5/+19
| | | | | | | | | | | | | | | | | | Previously, some useful xrefs were missing. Now each of the pages refers to all remaining section 2 pages, to the kld(4) page, and to a related utility's (section 8) page.
* | | Simplify the implementation of pmap_emulate_reference(). The new versiondfr2001-07-243-59/+76
| | | | | | | | | | | | | | | | | | | | | simply manipulates the pte which faulted instead of traversing the mapping list for that page. This makes it possible to complete the trap without needing locks and incidentally improves the accuracy of some statistics used by the VM system.
OpenPOWER on IntegriCloud