summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Return exit value 0 on success when PID is specified.kuriyama2001-01-251-0/+1
|
* - Don't try to send RA to lo0, gifN and faithN.ume2001-01-252-38/+10
| | | | | | - ipv6_network_interfaces has all available interfaces to work for static configuration even if the host is end host. When rtsol is invoked, singleness of interface is checked.
* Fix typophantom2001-01-252-4/+4
|
* Discard extra status information if -1. This has been breaking thensouch2001-01-251-0/+5
| | | | | | PS/2 mode for ZIP+ drives for a long time. Thanks Jonathon. Submitted by: j mckitrick <jcm@FreeBSD-uk.eu.org>
* Mention about rtadvd_interfaces. It should be specified if you wantume2001-01-251-0/+1
| | | | use rtadvd.
* man(7) -> mdoc(7)phantom2001-01-251-62/+63
|
* Give morse(6) own manual page since common manpage for bcd(6), ppt(6) andphantom2001-01-254-136/+180
| | | | morse(6) was mostly dedicated to morse(6)
* Remove never used home-born implementation of curses library from sourcephantom2001-01-254-846/+5
| | | | tree.
* Slightly re-word sentence to allow using .Nm macro without parameterphantom2001-01-251-1/+2
|
* Slightly re-word sentence to allow using .Nm macro without parameterphantom2001-01-251-4/+6
| | | | Use .St macro instead of hardcoding standard name
* Set properly the PixelBytes field for 8bits modes.nsouch2001-01-251-0/+2
| | | | Submitted by: Maxim Sobolev <sobomax@FreeBSD.org>
* Consider that the chipset may be in ECP mode (from BIOS settings)nsouch2001-01-254-72/+74
| | | | | | | even if mode PS/2 is forced with bootflags. As a matter of fact, chipsets needs some extra configuration for accessing PS/2 mode from ECP. The current patch is only relevant for generic chipsets since specific code is supposed to deal with this during detection.
* remove reference to nonexistent ugen(4) manual page.ben2001-01-251-1/+0
| | | | | PR: 24622 Submitted by: Ernst de Haan <ernst@jollem.com>
* Added necessary include for pc98.nyan2001-01-252-0/+2
|
* Remove CV_DECLARE(), which serves no useful purpose.jasone2001-01-251-4/+0
|
* Add some description and clarification as to the use of the tdfx device.cokane2001-01-252-0/+18
| | | | | Answers many questions I have recieved and has a short description of what the driver actually does.
* Add -c/C which chroots by IP of tftp client, (i.e. /tftproot/127.0.0.1/).billf2001-01-252-4/+50
|
* Fix bogus checking of snprintf() by decreasing the remaining size of thewill2001-01-251-0/+3
| | | | | | | string after each successful snprintf() call. This makes apply(1) work *correctly*, although the whole snprintf() deal really should be redone. Bug noted by: nectar (about 3 weeks ago)
* Pass up errors returned by dummynet. The same should be done withluigi2001-01-251-3/+3
| | | | divert.
* Disable cy - it is now completely broken and needs non-trivial work.peter2001-01-254-24/+14
|
* - Doh, lock faultin() with proc lock in scheduler().jhb2001-01-251-0/+6
| | | | - Lock p_swtime with sched_lock in scheduler() as well.
* Back out over-aggressive locking of p->p_cred.jhb2001-01-251-16/+3
| | | | Requested by: alfred
* Note that rmdir(2) does not follow symbolic links.jdp2001-01-241-1/+6
|
* Remove prototype for child_return().jhb2001-01-241-1/+0
|
* - Change fork_exit() to take a pointer to a trapframe as its 3rd argumentjhb2001-01-2410-49/+24
| | | | | | | instead of a trapframe directly. (Requested by bde.) - Convert the alpha switch_trampoline to call fork_exit() and use the MI fork_return() instead of child_return(). - Axe child_return().
* Don't crash the kernel if the user tries to load a netgraphjulian2001-01-241-4/+10
| | | | module with the wrong version number.
* DEVFS cloning for if_tap.phk2001-01-241-5/+47
| | | | Submitted by: Maksim Yevmenkin <m_evmenkin@yahoo.com>
* - Remove some unused and unneeded atomic operations sitting in mp_machdep.cjhb2001-01-242-61/+13
| | | | | that are already implemented in atomic.h. - Fix SMP kernel builds.
* Newbusify ar(4).jhay2001-01-247-640/+1166
|
* Note config(8) warnings->errors, clarify ConnectionsPerPeriod in sshd_config,bmah2001-01-242-20/+30
| | | | | clarify (I hope) libgcc_r.a note. These and a few other items were/are MFC-ed to RELENG_4.
* Change cpuno to cpuid.dfr2001-01-244-32/+32
|
* Fix typo.dfr2001-01-242-1/+2
|
* Correct a comment.wollman2001-01-242-2/+2
|
* Catch up to proc flag changes.jhb2001-01-241-3/+3
|
* Add .Lb libcipherben2001-01-241-1/+3
| | | | | PR: 24434 Submitted by: Bill Cheswick <ches@bell-labs.com>
* Add entry for libcipher.ben2001-01-241-0/+1
|
* Catch up to proc flag change.jhb2001-01-241-1/+1
|
* Catch up to new proc flags.jhb2001-01-241-1/+1
|
* -pthread -> -lc_rru2001-01-241-1/+1
|
* -pthread -> -lc_rdeischen2001-01-243-3/+3
|
* Oops, when converting if (foo) panic() to a KASSERT(), you have to invertjhb2001-01-241-3/+4
| | | | | | the test case. Spotted by: peter, jasone
* Bump FreeBSD version to reflect changes to libc and libc_r.deischen2001-01-241-1/+1
|
* -pthread -> -lc_rdeischen2001-01-241-1/+1
|
* Add weak definitions for wrapped system calls. In general:deischen2001-01-24306-3478/+3895
| | | | | | | | | | | | | | | | | | | | | | | | | | | _foo - wrapped system call foo - weak definition to _foo and for cancellation points: _foo - wrapped system call __foo - enter cancellation point, call _foo(), leave cancellation point foo - weak definition to __foo Change use of global _thread_run to call a function to get the currently running thread. Make all pthread_foo functions weak definitions to _pthread_foo, where _pthread_foo is the implementation. This allows an application to provide its own pthread functions. Provide slightly different versions of pthread_mutex_lock and pthread_mutex_init so that we can tell the difference between a libc mutex and an application mutex. Threads holding mutexes internal to libc should never be allowed to exit, call signal handlers, or cancel. Approved by: -arch
* Add a lock to DIR to make telldir and friends MT-safe.deischen2001-01-242-54/+5
| | | | | | | Clean up stdio.h a bit and remove _THREAD_SAFE. Some of the usual macros getc, putc, getchar, putchar are no longer macros. Approved by: -arch
* Remove _THREAD_SAFE and make libc thread-safe by default bydeischen2001-01-24190-997/+1582
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | adding (weak definitions to) stubs for some of the pthread functions. If the threads library is linked in, the real pthread functions will pulled in. Use the following convention for system calls wrapped by the threads library: __sys_foo - actual system call _foo - weak definition to __sys_foo foo - weak definition to __sys_foo Change all libc uses of system calls wrapped by the threads library from foo to _foo. In order to define the prototypes for _foo(), we introduce namespace.h and un-namespace.h (suggested by bde). All files that need to reference these system calls, should include namespace.h before any standard includes, then include un-namespace.h after the standard includes and before any local includes. <db.h> is an exception and shouldn't be included in between namespace.h and un-namespace.h namespace.h will define foo to _foo, and un-namespace.h will undefine foo. Try to eliminate some of the recursive calls to MT-safe functions in libc/stdio in preparation for adding a mutex to FILE. We have recursive mutexes, but would like to avoid using them if possible. Remove uneeded includes of <errno.h> from a few files. Add $FreeBSD$ to a few files in order to pass commitprep. Approved by: -arch
* - Catch up to new proc flags.jhb2001-01-242-7/+8
|
* Add a new item to kinfo_proc: ki_sflag to mirror p_sflag.jhb2001-01-243-2/+5
|
* Convert all simplelocks to mutexes and remove the simplelock implementations.jasone2001-01-2456-1373/+615
|
* Argh, I didn't get this test right when I converted it. Break this upjhb2001-01-241-10/+9
| | | | | into two separate if's instead of nested if's. Also, reorder things slightly to avoid unnecessary mutex operations.
OpenPOWER on IntegriCloud