Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix three warnings: | tjr | 2003-01-04 | 1 | -2/+2 |
| | | | | | | o #include <stdio.h> to make sprintf()'s prototype visible. o Remove unused variable: sbuf. o Don't use assignment as truth value. | ||||
* | Add a sysctl to get the vm protections for the stack of the current process. | jake | 2003-01-04 | 1 | -0/+14 |
| | | | | | | | | On architectures with a non-executable stack, eg sparc64, this is used by libgcc to determine at runtime if its necessary to enable execute permissions on a region of the stack which will be used to execute code, allowing the call to mprotect to be avoided if the kernel is configured to map the stack executable. | ||||
* | style(9): return type on separate line from function name. | tjr | 2003-01-04 | 2 | -2/+4 |
| | |||||
* | Hold the page queues lock around pmap_remove_pte() in pmap_enter(). | alc | 2003-01-04 | 1 | -0/+2 |
| | | | | Submitted by: Arun Sharma <adsharma@unix-os.sc.intel.com> | ||||
* | - Propagate suspend/resume to child devices. | simokawa | 2003-01-04 | 5 | -38/+99 |
| | | | | | | | | | - Restore pci config registers after resume. - Reinitialize and start rx buffers after resume. - Don't reallocate memory in fwohci_db_init() if the dbch is already initialized. - Fix typo. - Some clean up. | ||||
* | Fix a number of bugs noticed by more extensive testing: | tjr | 2003-01-04 | 1 | -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. | davidxu | 2003-01-04 | 2 | -6/+12 |
| | |||||
* | Add a regression test for wordexp() and wordfree(). | tjr | 2003-01-04 | 2 | -0/+185 |
| | |||||
* | gifconfig(8) was depricated. | ume | 2003-01-04 | 1 | -2/+3 |
| | | | | Reported by: rwatson | ||||
* | Rename UL_GETSIZE to UL_GETFSIZE and UL_SETSIZE to UL_SETFSIZE; these are | tjr | 2003-01-04 | 3 | -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_DECLS | tjr | 2003-01-04 | 1 | -0/+4 |
| | | | | so that it can be called from C++. | ||||
* | Remove unused variable: sz. | tjr | 2003-01-04 | 1 | -2/+0 |
| | |||||
* | Remove unused variable: size. | tjr | 2003-01-04 | 1 | -1/+1 |
| | |||||
* | #include <string.h> for strcmp()'s prototype. | tjr | 2003-01-04 | 1 | -0/+1 |
| | |||||
* | Remove unused variable: omask. | tjr | 2003-01-04 | 1 | -1/+0 |
| | |||||
* | #include <sys/linker.h> for kldload()'s prototype. | tjr | 2003-01-04 | 1 | -0/+1 |
| | |||||
* | #include <string.h> for strlen()'s prototype. | tjr | 2003-01-04 | 1 | -0/+1 |
| | |||||
* | #include <ctype.h> for isspace()'s prototype (or a macro version). | tjr | 2003-01-03 | 1 | -0/+1 |
| | |||||
* | Add missing #include "namespace.h". | tjr | 2003-01-03 | 1 | -0/+1 |
| | |||||
* | Remove unused variable: ntmp. | tjr | 2003-01-03 | 1 | -1/+0 |
| | |||||
* | #include <string.h> for strcmp()'s prototype. | tjr | 2003-01-03 | 1 | -1/+2 |
| | |||||
* | #include "local.h" to make __svfscanf()'s prototype visible. | tjr | 2003-01-03 | 3 | -0/+3 |
| | |||||
* | Remove an unused variable: `sb' in fts_read(). | tjr | 2003-01-03 | 2 | -2/+0 |
| | |||||
* | Remove an unused variable, `sverrno', which has not been used since 1.11. | tjr | 2003-01-03 | 1 | -1/+0 |
| | |||||
* | Make this build and sync-up: | marcel | 2003-01-03 | 1 | -6/+1 |
| | | | | | | o Add COMPAT_FREEBSD4 o Remove NO_GEOM o Remove commented out options. | ||||
* | mdoc(4) police: Markup. Fix 1 hard sentence break. | trhodes | 2003-01-03 | 1 | -4/+7 |
| | |||||
* | mdoc(7) police: Remove hard sentence breaks. | trhodes | 2003-01-03 | 1 | -9/+18 |
| | |||||
* | mdoc(7) police: markup nits. | trhodes | 2003-01-03 | 1 | -5/+7 |
| | |||||
* | White space fixes | julian | 2003-01-03 | 2 | -20/+20 |
| | |||||
* | Make an explicit flag to indicate that a KSE has a reason to upcall, | julian | 2003-01-03 | 3 | -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. They | julian | 2003-01-03 | 2 | -18/+0 |
| | | | | | | are set to a good default anyhow. Submitted by: davidxu@ | ||||
* | Refine the assertion in vm_object_clear_flag() to allow operation on the | alc | 2003-01-03 | 1 | -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 '~'. | phk | 2003-01-03 | 1 | -2/+2 |
| | | | | Spotted by: bde | ||||
* | Document bit 31 of the cpuid features word as PBE (Pending Break Enable). | jhb | 2003-01-03 | 2 | -2/+2 |
| | |||||
* | Reenable building in share/mklocale for sparc64. It seems to work fine | tmm | 2003-01-03 | 1 | -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. | phk | 2003-01-03 | 1 | -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. | mike | 2003-01-03 | 1 | -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. | phk | 2003-01-03 | 5 | -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.h | phk | 2003-01-03 | 4 | -16/+12 |
| | | | | | include file where they belong. Share the dmmax_mask variable. | ||||
* | Use correct _VM_SWAP_PAGER_H_ to check for multiple inclusion. | phk | 2003-01-03 | 1 | -3/+3 |
| | |||||
* | Reset the stream orientation to 0 (unoriented) in freopen(), as required | tjr | 2003-01-03 | 1 | -0/+1 |
| | | | | by the C standard. | ||||
* | It is no longer necessary to include sys/types.h before wordexp.h. | tjr | 2003-01-03 | 1 | -1/+0 |
| | |||||
* | Describe WRDE_NOCMD in the same way that we describe the rest of the flags. | tjr | 2003-01-03 | 1 | -1/+1 |
| | |||||
* | Retire sys/dmap.h by including the two lines of it which matters | phk | 2003-01-03 | 2 | -64/+3 |
| | | | | directly in vm/vm_swap.c. | ||||
* | Lock the vm object when performing vm_object_clear_flag(). | alc | 2003-01-03 | 1 | -0/+4 |
| | |||||
* | Remove CCDF_SWAP and CCDF_PARITY, they have never been implemented. | phk | 2003-01-03 | 3 | -47/+11 |
| | |||||
* | Remove CCDF_SWAP and CCDF_PARITY. They have never been implemented. | phk | 2003-01-03 | 2 | -4/+0 |
| | |||||
* | MFMBR: Add ioctls for writing an IPL and a boot menu. | nyan | 2003-01-03 | 2 | -70/+165 |
| | |||||
* | Merged from sys/isa/fd.c revision 1.243. | nyan | 2003-01-03 | 2 | -12/+0 |
| | |||||
* | Convert calls to BUF_STRATEGY to VOP_STRATEGY calls. This is a no-op since | phk | 2003-01-03 | 11 | -16/+14 |
| | | | | all BUF_STRATEGY did in the first place was call VOP_STRATEGY. |