summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Use POSIX macros for wait(2)-style status information instead of themike2002-06-036-17/+15
| | | | | deprecated 4.2/4.3BSD wait union. Fix some nearby pid_t/int confusion.
* Add a comment describing a resource leak that occurs during a failure casejeff2002-06-031-0/+3
| | | | in obj_alloc.
* Backout revision 1.2 since it didn't work and replace it with a fix thatjhb2002-06-031-6/+2
| | | | | | actually does work. Ignore errors from kldload(2) if the errno value is EEXIST. It would help if this return value were documented in the kldload(2) manual page.
* Added support for 82545EM and 82546EB based adapters.pdeuskar2002-06-039-1761/+7205
| | | | | | Added Vlan support. MFC after: 1 week
* Use a per-device worker thread to avoid blocking in mdstrategy()iedowse2002-06-031-11/+36
| | | | | | | until the I/O completes. This fixes some easily reproducable deadlocks that occur when using md(4) with GEOM. Reviewed by: phk
* Add a missing ``a''.brian2002-06-031-1/+1
|
* Recognize 0xbe as an uppercase character.tobez2002-06-031-1/+1
| | | | Approved by: ache
* Stop using the depreciated 'union wait' definitions, moving to a moregad2002-06-032-26/+25
| | | | | | | standard handling of wait()-related routines. Submitted by: mike MFC after: 2 weeks
* Make the manpage consistent with the code on the subject of comments, as tojmallett2002-06-031-1/+4
| | | | | | | | not change the code to always do the "GNU" thing, as it's possible people rely on BSD m4(1) traditionally resetting comment characters in case of no arguments to the changecom function. PR: bin/17480 (I think this satisfies the problem report)
* Fix handling of the 'noError' variable. According to the code comments,jhb2002-06-032-24/+22
| | | | | | | | | | | one can set the 'noError' variable to ignore any errors that occur for the next command. However, the code was only unsetting 'noError' when an error actually occurred, so if you set 'noError', the next command completed ok, and the command after that failed, the second command's failure would be ignored. This fixes this by performing the 'noError' check earlier and then unsetting 'noError' after every command that is run. Sponsored by: The Weather Channel
* Add a 'mediaClose' script command to close the open media. An example usejhb2002-06-034-0/+28
| | | | | | | would be to unmount the CD you installed from and prompt the user to eject it before rebooting the machine. Sponsored by: The Weather Channel
* Correct bswap64() prototype.sobomax2002-06-031-1/+1
| | | | | | Submitted by: glewis MFC after: 1 day (assuming that there is re's approval)
* Do not overwrite mm locale files.ru2002-06-031-5/+5
|
* Correct History: cal(1) appeared in V5, not V6.tjr2002-06-031-1/+1
|
* Correct history (again): V3 had a kill command, only it was in section 8,tjr2002-06-031-1/+1
| | | | not 1.
* Correct History: nice(1) appeared in V4.tjr2002-06-031-1/+1
|
* Correct History: time(1) appeared at least as early as V3.tjr2002-06-031-1/+1
|
* Reimplement FILES support using bsd.files.mk with theru2002-06-036-31/+75
| | | | | | | | same set of features as in recently added bsd.incs.mk (FILESGROUPS, accessibility from both bsd.prog.mk and bsd.lib.mk, de-pessimized typical installation path, etc.) New standard targets: buildfiles, installfiles, and files (buildfiles + installfiles).
* Correct History: sync(8) appeared in V4.tjr2002-06-031-1/+1
|
* Correct History section: kill(1) appeared in V4, not V6.tjr2002-06-031-1/+1
|
* Sort sections.tjr2002-06-031-12/+12
|
* Correct HISTORY section - split(1) appeared at least as early as V3.tjr2002-06-031-1/+1
|
* Call getmntinfo with MNT_NOWAIT to avoid hanging if any NFS serversiedowse2002-06-031-1/+8
| | | | | | | | are down. Avoid trying to send RPCs to the pidXXX@machine names used in the special amd(8) mounts. PR: bin/6183 Submitted by: Petr Lampa <lampa@fee.vutbr.cz>
* Skip %pN comes from ncursesache2002-06-031-0/+5
| | | | PR: 15418
* Add pc98 subdirectory.nyan2002-06-031-0/+1
|
* Quick and dirty convert to newbus. (Eventually 'eni.c' should go away.)mdodd2002-06-036-18/+670
| | | | | | | Module loads and unloads properly. Thanks to Richard Hodges <rh@matriplex.com> for donating the hardware to allow me to work on this driver.
* Add new 'hea' driver files.mdodd2002-06-031-0/+2
|
* Build a 'hea_pci' driver module.mdodd2002-06-031-0/+11
|
* - Add 'hea'.mdodd2002-06-031-1/+2
| | | | - Compile 'hfa' only on i386 (for now).
* Remove comment about NO_WERROR, since it no longer applies.rwatson2002-06-031-8/+0
| | | | Pointed out by: silby
* o Migrate vm_map_split() from vm_map.c to vm_object.c, renaming italc2002-06-023-90/+93
| | | | | to vm_object_split(). Its interface should still be changed to resemble vm_object_shadow().
* Connect perl to the build.des2002-06-021-0/+1
|
* ANSIfy the one remaining K&R function.des2002-06-021-4/+1
|
* Whitespace nits.des2002-06-021-2/+2
|
* Add support for 'j' flag. Simplify the size modifier code and reduce codedes2002-06-021-100/+71
| | | | | | duplication. Also add support for 'n' specifier. Reviewed by: bde
* Fix typo in the BSD copyright: s/withough/without/schweikh2002-06-0288-88/+88
| | | | | Spotted and suggested by: des MFC after: 3 weeks
* o Style fixes to vm_map_split(), including the elimination of one variablealc2002-06-021-8/+1
| | | | | | | | declaration that shadows another. Note: This function should really be vm_object_split(), not vm_map_split(). Reviewed by: md5
* Fix breakage caused by allocating the I/O buffer. There was amarcel2002-06-021-2/+5
| | | | | | | sizeof(buf) lurking around that I missed. PR: 38811 Submitted by: Adrian Colley <aecolley@spamcop.net>
* Turn on the math function stub stubs.obrien2002-06-021-1/+1
| | | | | Submitted by: Martin Blapp <mb@imp.ch> I believe OK with: peter
* Two markup fixes in sendmail section, add a missing word.bmah2002-06-022-4/+4
|
* Fix error in ls -h relnote.bmah2002-06-022-2/+2
| | | | | Submitted by: Kurashina Hideyuki <ac14806t@st.nagaoka-ct.ac.jp>, Ross Lippert <ripper@eskimo.com>
* Add NCURSES_OSPEED replace command to MANFILTERache2002-06-022-2/+4
|
* Don't send a RAD_NAS_IP_ADDRESS attribute as RAD_NAS_IDENTIFIER isbrian2002-06-021-0/+8
| | | | | | | | | | | | | | | | | sufficient. In fact, using both breaks the radiator RADIUS daemon when used with a db as it maps both attributes to the same field value and then fails the insert. I decided to remove RAD_NAS_IP_ADDRESS on the basis that rfc2138 says: An Access-Request MUST contain a User-Name attribute. It SHOULD contain either a NAS-IP-Address attribute or NAS-Identifier attribute (or both, although that is not recommended). It MUST despite the fact that this not recommended bit was removed from the updated rfc.
* Support the SysV-style -exec utility args.. {} + function, required bytjr2002-06-024-8/+95
| | | | SUSv3. This is similar to find foo -print0 | xargs -0 utility args.
* Fix spelling errors: minumum, overriden, inherittedschweikh2002-06-021-6/+6
| | | | MFC after: 3 weeks
* Correct a bunch of typos. Translators can ignore this commit.schweikh2002-06-021-8/+8
| | | | MFC after: 3 weeks
* Remove a URL from the middle of the BSD copyright (a clicko? a pasto?).schweikh2002-06-021-4/+4
| | | | | | | | | Fix typos: s/evironment/environment s/cont/const s/_lonjmp/_longjmp MFC after: 3 weeks
* Don't exit immediately if an error occurs, continue but exit non-zero.tjr2002-06-021-5/+9
|
* Fix typo causing ``fc -e'' to not work correctly. getopt() sets optarg,tjr2002-06-021-1/+1
| | | | not shoptarg.
* Adding an entry to the history with H_ENTER moves libedit's internaltjr2002-06-021-0/+9
| | | | | history cursor. Reset the cursor after adding the entry to the history when doing ``fc -s'' so the output is correct.
OpenPOWER on IntegriCloud