summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix a number of bugs noticed by more extensive testing:tjr2003-01-041-7/+15
| | | | | | | | | | o Call waitpid() if an error occurs after forking the child process to avoid leaving zombies around. o Handle the WRDE_DOOFS|WRDE_APPEND combination correctly o Do not confuse $( substitution with $(( shell arithmetic (noticed by wollman) o Handle backslash escaping properly o Allow $( and ${ to be quoted
* Set kse mailbox pointer to NULL when P_KSES is turned off.davidxu2003-01-042-6/+12
|
* Add a regression test for wordexp() and wordfree().tjr2003-01-042-0/+185
|
* gifconfig(8) was depricated.ume2003-01-041-2/+3
| | | | Reported by: rwatson
* Rename UL_GETSIZE to UL_GETFSIZE and UL_SETSIZE to UL_SETFSIZE; these aretjr2003-01-043-8/+17
| | | | | the names required by 1003.1-2001. The old names are retained for source compatibility with FreeBSD 5.0 and will be removed before 6.0.
* Bracket the prototype for ulimit() with __BEGIN_DECLS/__END_DECLStjr2003-01-041-0/+4
| | | | so that it can be called from C++.
* Remove unused variable: sz.tjr2003-01-041-2/+0
|
* Remove unused variable: size.tjr2003-01-041-1/+1
|
* #include <string.h> for strcmp()'s prototype.tjr2003-01-041-0/+1
|
* Remove unused variable: omask.tjr2003-01-041-1/+0
|
* #include <sys/linker.h> for kldload()'s prototype.tjr2003-01-041-0/+1
|
* #include <string.h> for strlen()'s prototype.tjr2003-01-041-0/+1
|
* #include <ctype.h> for isspace()'s prototype (or a macro version).tjr2003-01-031-0/+1
|
* Add missing #include "namespace.h".tjr2003-01-031-0/+1
|
* Remove unused variable: ntmp.tjr2003-01-031-1/+0
|
* #include <string.h> for strcmp()'s prototype.tjr2003-01-031-1/+2
|
* #include "local.h" to make __svfscanf()'s prototype visible.tjr2003-01-033-0/+3
|
* Remove an unused variable: `sb' in fts_read().tjr2003-01-032-2/+0
|
* Remove an unused variable, `sverrno', which has not been used since 1.11.tjr2003-01-031-1/+0
|
* Make this build and sync-up:marcel2003-01-031-6/+1
| | | | | | o Add COMPAT_FREEBSD4 o Remove NO_GEOM o Remove commented out options.
* mdoc(4) police: Markup. Fix 1 hard sentence break.trhodes2003-01-031-4/+7
|
* mdoc(7) police: Remove hard sentence breaks.trhodes2003-01-031-9/+18
|
* mdoc(7) police: markup nits.trhodes2003-01-031-5/+7
|
* White space fixesjulian2003-01-032-20/+20
|
* Make an explicit flag to indicate that a KSE has a reason to upcall,julian2003-01-033-46/+53
| | | | | | | and use that flag when there is a kse_wakeup() call. It will probably be used with signal delivery as well eventually. Submitted by: davidxu@
* Don't need to set retvals to 0 in the non error case. Theyjulian2003-01-032-18/+0
| | | | | | are set to a good default anyhow. Submitted by: davidxu@
* Refine the assertion in vm_object_clear_flag() to allow operation on thealc2003-01-031-1/+2
| | | | | kmem_object without Giant. In that case, assert that the kmem_object's mutex is held.
* Revert use of dmmax_mask, I had overlooked a '~'.phk2003-01-031-2/+2
| | | | Spotted by: bde
* Document bit 31 of the cpuid features word as PBE (Pending Break Enable).jhb2003-01-032-2/+2
|
* Reenable building in share/mklocale for sparc64. It seems to work finetmm2003-01-031-5/+1
| | | | | | now, and probably did for quite some time already. 5.0 candidate. Spotted by: roam
* Add various command line options, most notably sort order.phk2003-01-031-10/+51
| | | | | Submitted by: "Matthew Emmerton" <matt@gsicomp.on.ca> Sat on for far too long: phk
* Optimize errstr() by reducing the number of times it walks a string.mike2003-01-031-9/+7
| | | | | | | | As a side effect, it makes the code easier to read and requires less pointer arithmetic. Test by: strerror regression test Submitted by: Tim Kientzle <kientzle@acm.org>
* Make struct swblock kernel only, to make vm/swap_pager.h userland includable.phk2003-01-035-35/+20
| | | | | Move struct swdevt from sys/conf.h to the more appropriate vm/swap_pager.h. Adjust #include use in libkvm and pstat(8) to match.
* Avoid extern decls in .c files by putting them in the vm/swap_pager.hphk2003-01-034-16/+12
| | | | | include file where they belong. Share the dmmax_mask variable.
* Use correct _VM_SWAP_PAGER_H_ to check for multiple inclusion.phk2003-01-031-3/+3
|
* Reset the stream orientation to 0 (unoriented) in freopen(), as requiredtjr2003-01-031-0/+1
| | | | by the C standard.
* It is no longer necessary to include sys/types.h before wordexp.h.tjr2003-01-031-1/+0
|
* Describe WRDE_NOCMD in the same way that we describe the rest of the flags.tjr2003-01-031-1/+1
|
* Retire sys/dmap.h by including the two lines of it which mattersphk2003-01-032-64/+3
| | | | directly in vm/vm_swap.c.
* Lock the vm object when performing vm_object_clear_flag().alc2003-01-031-0/+4
|
* Remove CCDF_SWAP and CCDF_PARITY, they have never been implemented.phk2003-01-033-47/+11
|
* Remove CCDF_SWAP and CCDF_PARITY. They have never been implemented.phk2003-01-032-4/+0
|
* MFMBR: Add ioctls for writing an IPL and a boot menu.nyan2003-01-032-70/+165
|
* Merged from sys/isa/fd.c revision 1.243.nyan2003-01-032-12/+0
|
* Convert calls to BUF_STRATEGY to VOP_STRATEGY calls. This is a no-op sincephk2003-01-0311-16/+14
| | | | all BUF_STRATEGY did in the first place was call VOP_STRATEGY.
* manage kernel threads properly; especially shutting them down on module unloadsam2003-01-031-52/+133
| | | | Reviewed by: jhb
* MFS: crypto timing support; purge usercrypto sysctl (just don't configsam2003-01-033-9/+107
| | | | | | | | cryptodev or kldunload cryptodev module); crypto statistcs; remove unused alloctype field from crypto op to offset addition of the performance time stamp Supported by: Vernier Networks
* Remove unused second argument from DEV_STRATEGY().phk2003-01-0313-23/+23
|
* Add vm map and vm object locking to vmtotal().alc2003-01-031-5/+14
|
* Remove unused second argument from BIO_STRATEGY()phk2003-01-035-31/+15
|
OpenPOWER on IntegriCloud