summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Support input and output filters with remote printing.brian1997-04-124-34/+402
| | | | | Output filters are executed on a per-file basis as it's necessary to supply the file size to the "other side".
* Effectively remove the previous commit to fix threads forking. Thedyson1997-04-121-3/+7
| | | | change was a false-start, and needs more work.
* Submitted by: Philippe Charnier <charnier@xp11.frmug.org>davidn1997-04-121-7/+14
| | | | | Fixes name size limitation (was hardcoded to 8). Closes PR#3258
* Allow a kernel-supported process thread to do an exec without blastingdyson1997-04-111-7/+24
| | | | away the VM space of all of the other, associated threads.
* Set wakeup time in pthread_cond_wait() to `forever' (-1) to preventjb1997-04-113-72/+123
| | | | | | | calling thread from being rescheduled based on an unspecified wakeup time. Bug/fix pointed out by Alexandre Fenyo <fenyo@email.enst.fr>.
* Add -3 option to usage() statement.obrien1997-04-111-1/+1
|
* Fixed missing #include in synopsis.bde1997-04-111-0/+1
|
* Fixed return type of __syscall() in synopsis.bde1997-04-111-3/+3
| | | | Don't quote "..." in synopsis. Quoting here is unnecessary and unusual.
* Fixed missing const(s) or #include(s) in synopsis.bde1997-04-1113-12/+18
|
* Fixed synopsis (the #include was bogus and the return type for brk() wasbde1997-04-111-2/+2
| | | | wrong).
* Fixed missing header in synopsis.bde1997-04-111-0/+1
|
* Fixed synopsis (prototype was missing a const).bde1997-04-111-1/+1
|
* Fixed #include(s) in the synopsis to actually declare the function(s) in thebde1997-04-113-0/+5
| | | | synopsis.
* Cleaned up synopsis:bde1997-04-111-4/+4
| | | | | | | | - don't quote function names, since quoting them is unnecessary and unusual and confuses my synopsis checker. - include <sys/types.h> instead of <sys/param.h>. It is normal to (have to) include <sys/param.h> instead of <sys/types.h>, but it is more useful for man pages to document minimal prerequisites.
* Fixed synopsis:bde1997-04-111-4/+1
| | | | | | | | - don't declare nonexistent function sleep(). - don't include <sys/errno.h> explicitly. sleep() should be nuked some more, e.g., this man page should not be named after a nonexistent function.
* Don't print nonexistent library names for `ld -f [-Lfoo] -lbar'. Abde1997-04-111-2/+10
| | | | | | | | | dependency on `bar' is very unlikely to be correct. This is a quick fix for broken dependencies in gdb and many other places. The dependencies on internal libraries are now missing instead of wrong when `make depend' is run before the libraries are created.
* Deleted ddb_inb and ddb_outb functions that provide I/O accesskato1997-04-111-18/+1
| | | | | routines as function for DDB. The inb and outb are provided as functions in machdep.c when DDB is defined.
* Add ``%{'' and ``%}'' to one of the examples so that you can actuallyobrien1997-04-111-0/+2
| | | | cut-n-paste the example and have it actually lex and compile.
* Ulf has now also donated the case for "the new freefall" - amend hisjkh1997-04-111-2/+3
| | | | entry accordingly.
* Synchronize with sys/i386/isa/syscons.c revision 1.209.kato1997-04-111-10/+6
|
* Make depend rely on config.hjkh1997-04-111-1/+1
|
* Add Joe McGuckin for the Kingston ethernet card he donated.jkh1997-04-111-4/+4
|
* Don't even think about processing bogus domain names here.wpaul1997-04-101-1/+5
|
* Drop the number of allowed tags back down to 8. Pluto uses a higher valuegibbs1997-04-101-17/+17
| | | | | | | | | | which mistakenly got committed. Fix two bugs in the ahc_reset_device code: Limit search for SCBs to process to those that are active and are not queued for done processing. It's okay for an SCB to not have a waiting next SCB.
* aic7xxx.seq:gibbs1997-04-104-13/+16
| | | | | | | | | | | | Be consistant about testing for parity errors after waiting for a REQ on the bus. Don't ack the last byte in a transaction until after we've cleared all target state. aic7xxx_asm.c: Test the return value of getopt against -1 not EOF. (Yet another shameless victum of the style guide being wrong).
* Fixed bogus existence test related to searching for a nearby objbde1997-04-102-12/+4
| | | | | | | directory. The object (= current) directory always exists, so don't search for it. Use ${.TARGET} instead of deprecated $@.
* Fixed bogus existence test related to searching for a nearby objbde1997-04-101-6/+1
| | | | | directory. manpath.1 is always in the current (= object) directory, so don't search for it.
* Fixed bogus existence test related to searching for a nearby objbde1997-04-101-6/+1
| | | | | directory. man.1 is always in the current (= object) directory, so don't search for it.
* Fixed bogus existence test related to searching for a nearby objbde1997-04-101-18/+9
| | | | | | | | | | | | directory. config.h is always in the current (= object) directory, so don't search for it. config.h is not a source for the library, so don't put it in SRCS and don't make the library depend on it. Don't put unused flags in CFLAGS. Simplify using INTERNALLIB*.
* Fixed bogus existence check related to searching for a nearby obj directory.bde1997-04-102-4/+4
| | | | Now the search is as incomplete as elsewhere instead of broken.
* Get the declaration of `struct dirent' from <sys/dirent.h>, not frombde1997-04-103-23/+12
| | | | | | <sys/dir.h>, and use the new macro GENERIC_DIRSIZ() instead of DIRSIZ(). Removed unused #includes.
* Get the declaration of `struct dirent' from <sys/dirent.h>, not frombde1997-04-102-10/+8
| | | | | | | | | <sys/dir.h>. Removed unused #include. Fixed type and order of struct members in pseudo-declaration of `struct vop_readdir_args'.
* Removed unused or apparently-unused #includes, especially of thebde1997-04-104-58/+4
| | | | deprecated header <sys/dir.h>.
* Avoid processing obviously bogus domain names in the YPBINDPROC_DOMAINwpaul1997-04-101-1/+12
| | | | and YPBINDPROC_SETDOM procedures.
* Add a sanity test to ypproc_xfr_2_svc(): check that the map and domainwpaul1997-04-101-8/+48
| | | | | | | | | in the transfer request actually exist. Technically ypxfr can do this too, but why waste the cycles getting ypxfr off the ground for a transfer we already know is going to fail. Also apply stricter access control rules; ypproc_xfr_2_svc() is in a different class than the normal map access procedures procedures.
* Deprecated <sys/dir.h> some more - changed the comment saying thatbde1997-04-102-20/+24
| | | | | | | | | | <dirent.h> should be used instead to a warning. If this causes too many warnings in ports then it should be changed back after checking some ports for related configuration errors. Moved the definition of DIRSIZ() from <sys/dir.h> to <sys/dirent.h> so that it can be used in the kernel without including <sys/dir.h>. Renamed it in some cases to avoid new namespace pollution.
* Add extra paranoia test. In theory this doesn't really gain you anything,wpaul1997-04-101-2/+12
| | | | but the extra warning message could be useful.
* Use smalllblktosize() instead of multiplying small block numbersbde1997-04-101-4/+4
| | | | | by fs->fs_bsize. The macro is usually faster and makes it clearer that the multiplication can't overflow.
* Preserve some bits in the keyboard controller command byte whenyokota1997-04-103-30/+18
| | | | | | | | | | | | resetting the keyboard. Well, sorry, this bug is totally my fault. I DID intend to preserve them, but somehow I failed. The bug puts some old keyboard controllers in a strange state, resulting in keyboard freeze or random key input. The fix closes PR kern/3067.
* Add a short blurb about the ports page in the "applications" question.asami1997-04-101-7/+34
| | | | | | | List all three packages directories in the ensuing packages description. Add a short (in fact, very short) section about libc.so.3.0 and wrong package versions.
* Add a section on sysmouse configuration.brian1997-04-101-2/+38
| | | | Suggested by: jkh
* Make the use of mousedtype/sysmouse clearer.brian1997-04-101-1/+4
| | | | Suggested by: jkh
* Catch up with the original.hanai1997-04-101-3/+3
|
* Nate Johnson is now the Gallery/Commercial editor since Charles Wimmerjkh1997-04-101-2/+2
| | | | seems to have disappeared.
* Add Jack O'Neill to donor's list.jkh1997-04-101-4/+8
|
* Catch up with the original.hanai1997-04-101-3/+4
|
* Expand donors list. Note: Anyone I missed, *please* contact me!jkh1997-04-101-2/+11
| | | | I'm only now starting to get this a little more well organized.
* Typo police. Part of PR# 3242.mpp1997-04-091-1/+1
| | | | Submitted by: Philippe Charnier <charnier@xp11.frmug.org>
* Use "-pg" instead of "-p" for generating profiled object files.jdp1997-04-091-5/+5
| | | | | | The two options differ only when linking, but "-p" is incorrect because it is associated with the old-style "prof" command, which we do not support.
* Oops...now really commit the doc change.guido1997-04-092-2/+6
|
OpenPOWER on IntegriCloud