summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Minor nit: get p pointer in msleep() from td->td_proc (wherejhb2002-05-231-1/+1
| | | | td == curthread) rather than from curproc.
* Whitespace: trim a trailing tab.jhb2002-05-231-1/+1
|
* Make the counters uintmax_ts, and use %ju rather than %llu.des2002-05-232-4/+6
|
* Make my style consistent.jmallett2002-05-231-5/+5
| | | | | | Remove two includes. Fix a typo (semicolon instead of period at EOL).
* Comment out extra tokens after #else and #endif.des2002-05-2339-154/+161
|
* Fix a panic by allocating the iface structure locally in the attachjoe2002-05-232-3/+14
| | | | function instead of in usb_probe_and_attach.
* - Turn two more storage pools into UMA zones and make the related memoryarr2002-05-234-30/+31
| | | | allocations and frees use the UMA api.
* Reflect some changes in the NetBSD code path, and sligh adjustments to ours.joe2002-05-231-4/+7
| | | | (Non-functional changes).
* Hide a couple of unguarded error returns behind the no_fail test.des2002-05-230-0/+0
| | | | Sponsored by: DARPA, NAI Labs
* Hide a couple of unguarded error returns behind the no_fail test.des2002-05-231-5/+6
|
* Free old_pwd only in the code path where it has been allocated.jmallett2002-05-221-1/+1
| | | | Reviewed by: des
* Taking a leap of faith, tie the help command in to the build.jmallett2002-05-221-0/+1
|
* Add my PD implementation of the SCCS help command, which prints help fromjmallett2002-05-222-0/+146
| | | | | files in the format used by SCCS, given a key. It behaves exactly like the ``proper'' SCCS help command, from what testing I can do.
* New release notes: asa(1), pathchk(1), sccs(1),bmah2002-05-222-2/+46
| | | | | | uuencode(1)/uudecode(1) base64 synonyms, ptx removal. Modified release notes: ncurses 5.2-20020518.
* Sync with NetBSD. (Non functional changes).joe2002-05-221-9/+9
|
* Fix a bug: Use USBD_DEFAULT_INTERVAL instead of USBD_DEFAULT_TIMEOUTjoe2002-05-221-1/+1
| | | | in a call to usbd_open_pipe_ival.
* Increase the maximum FSM option length to 50brian2002-05-222-3/+3
|
* Add some missing #includes that weren't required due to namespace polutionbrian2002-05-223-2/+3
| | | | | | in our headers. Submitted by: bde
* Rename pause() to ia32_pause() so it doesn't conflict with the pause()jhb2002-05-224-14/+14
| | | | | function defined in <unistd.h>. I didn't #ifdef _KERNEL it because the mutex implementation in libpthread will probably need this.
* Restore us back to the rev 1.324 level of having an Intel gigE driver.obrien2002-05-222-0/+2
|
* Update 164SX section with newly acquired insights.wilko2002-05-221-1/+12
| | | | Submitted by: Sten <sten@blinkenlights.nl>
* Add a warning regarding localhost-only listening daemons inside jails.gshapiro2002-05-222-5/+9
| | | | | | | | | | Apparently binding only to 127.0.0.1 inside of a jail actually binds to the jail IP address as well (in effect, bind to all available interfaces in the jail). Submitted by: Helge Oldach <test-smtp@oldach.net> MFC after: 1 day pending RE approval
* 1/2assed reimplementation of c-common.c revs 1.2 (-fformat-extensions)obrien2002-05-221-6/+83
| | | | and 1.3 (printf0) for GCC 3.1.
* Tie sccs(1) in to the build, as it now does one thing right: sccs whatjmallett2002-05-221-0/+1
|
* Remove mention of the GNU version of ptx, it is dead.jmallett2002-05-221-1/+1
|
* Add a usage().jmallett2002-05-221-2/+19
| | | | | Print usage() if right before executing the specified command, it comes to be that *argv is NULL (i.e. a flag was specified without a command being given).
* Remove #ifndef's on V6.jmallett2002-05-221-4/+0
|
* Put braces around the command table properly.jmallett2002-05-221-36/+36
|
* Use what(1) here, in /usr/bin/what. It doesn't print error 26 correctly, butjmallett2002-05-221-1/+1
| | | | | neither does the pd sccs(1) implementation I have around, so there's no loss for now.
* str_concat() doesn't really take const arguments.jmallett2002-05-222-4/+4
| | | | | Submitted by: bde Pointy hat to: jmallett
* Do not run shell from /bin, run it from $PATH.ru2002-05-225-7/+29
| | | | Bump MAKE_VERSION to 5200205221.
* Added the MAKE_VERSION global that could be useful in determiningru2002-05-222-0/+7
| | | | | | | | | | | | if a given make(1) is feature-compatible with a set of makefiles. When merged, this will be used to replace the ugly upgrade_checks hacks in src/Makefile. Version has the RYYYYMMDDX format, where R is from RELENG_<R> and X allows for 10 distinguishable changes per day. Discussed with: bde
* Repair a bug where type AAAA answer records were not displayed.nectar2002-05-221-2/+1
| | | | | | | | Reference ISC BIND issue: ``1279. [bug] nslookup: partial coversion to similar style outputs for both -type=aaaa and -type=a.'' Reported by: ume
* Do not attempt to free static memory.nectar2002-05-221-6/+2
| | | | | | | Reference ISC BIND issue: ``1278. [bug] free() of non-malloced memory in nslookup.'' Reported by: phkmalloc, Mike Tancsa <mike@sentex.net>
* Format internal commands properly.jmallett2002-05-221-8/+8
| | | | | | | | Kill a bit of trailing whitespace. Fix a path format. Submitted by: mdoc(7) police (ru)
* Clean up the manual page by leaps and bounds in terms of formatting.jmallett2002-05-221-110/+101
| | | | | | | Ruslan's version took away the '.Nm' for some commands, but not others, so I chose to go with leaving '.Nm'. Submitted by: ru
* Make the guarded string functions take a const "from" addr, and make thejmallett2002-05-221-8/+8
| | | | | | | function that prints when a botched guarded string operation occurs take two const arguments. XXX Should we use strlcat/strlcpy instead and hope for the best?
* Debug registers aren't selectors, so use saner names for the variables injhb2002-05-222-48/+48
| | | | the inline functions for reading and writing the debug registers.
* - Sort the pause() inline into the appropriate location.jhb2002-05-222-12/+50
| | | | - Add many missing prototypes to the non-GCC section.
* Rename cpu_pause() to pause(). Originally I was going to make this anjhb2002-05-224-12/+12
| | | | | | | | | MI API with empty cpu_pause() functions on other arch's, but this functionality is definitely unique to IA-32, so I decided to leave it as i386-only and wrap it in #ifdef's. I should have dropped the cpu_ prefix when I made that decision. Requested by: bde
* Remove register qualifier.jmallett2002-05-221-29/+29
|
* Use function prototypes.jmallett2002-05-221-95/+71
|
* PSD:19 (curses) is long dead.ru2002-05-221-8/+0
|
* Unencumber.ru2002-05-221-12/+12
|
* Build sccs(1) docs.ru2002-05-223-2/+13
|
* 19.curses wasn't encumbered, it's just dead.ru2002-05-221-1/+1
|
* Clean up formatting.jmallett2002-05-221-9/+11
|
* Replace the evil that is __DECONST() with (void *). This is one of the leastjmallett2002-05-221-2/+2
| | | | | | evil things we can do involving the const qualifier and a pointer. Submitted by: bde, ru
* Make sccs(1) compile cleanly by fixing syntax errors such as #endif followedjmallett2002-05-221-9/+14
| | | | | by a token, and by including headers to get prototypes for many things, and also by spelling the type of structure readdir(3) returns as "dirent".
* Unroff all forms of \f and \*, and the simplest form of \s.ru2002-05-221-8/+14
| | | | | Submitted by: fenner, ru Reviewed by: ru, fenner
OpenPOWER on IntegriCloud