Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Define a new flag, UVM_FLAG_HOLE, for uvm_map to create a vm_map_entry of | 2008-06-09 | 1 | -4/+7 | ||
| | | | | | | | | | | | | | a new etype, UVM_ET_HOLE, meaning it has no backend. UVM_ET_HOLE entries (which should be created as UVM_PROT_NONE and with UVM_FLAG_NOMERGE and UVM_FLAG_HOLE) are skipped in uvm_unmap_remove(), so that pmap_{k,}remove() is not called on the entry. This is intended to save time, and behave better, on pmaps with MMU holes at process exit time. ok art@, kettenis@ provided feedback as well. | |||||
* | this is openbsd, therefore the native display mode is called openbsd | 2007-11-28 | 1 | -3/+3 | ||
| | ||||||
* | Use kinfo_proc2 instead of kinfo_proc. | 2007-10-02 | 1 | -7/+8 | ||
| | | | | ok art@ | |||||
* | use calloc() to avoid malloc(n * m) overflows; checked by djm canacar jsg | 2007-09-02 | 1 | -2/+2 | ||
| | ||||||
* | convert to new .Dd format; | 2007-05-31 | 1 | -2/+2 | ||
| | ||||||
* | Zap a bunch of unused VT_* tags. | 2007-05-31 | 1 | -3/+1 | ||
| | | | | ok tedu@,pedro@ | |||||
* | kill some commented "struct proc *", and knf while there; ok ray | 2007-04-26 | 1 | -58/+30 | ||
| | ||||||
* | Don't warn for kernel_text being zero on (some) m68k systems. | 2006-07-01 | 1 | -1/+4 | ||
| | ||||||
* | Remove fdescfs | 2005-12-06 | 1 | -2/+1 | ||
| | ||||||
* | Remove kernfs, okay deraadt@. | 2005-11-24 | 1 | -2/+1 | ||
| | ||||||
* | kill stackable filesystems ghosts | 2005-05-26 | 1 | -4/+1 | ||
| | ||||||
* | setresgid; ok deraadt@ | 2005-05-03 | 1 | -7/+9 | ||
| | ||||||
* | Use the return value from getopt() instead of optopt in non-error | 2005-03-25 | 1 | -2/+2 | ||
| | | | | | | | cases since optopt is not set in these cases, and it is not required by POSIX that it should be. ok millert otto | |||||
* | [From: Joris Vink] | 2004-07-09 | 1 | -7/+4 | ||
| | | | | Use strtonum(3) instead of strtol(3). ok deraadt@ & me | |||||
* | Off by 1 ! OK millert@, tedu@ | 2004-04-01 | 1 | -2/+2 | ||
| | ||||||
* | procmap/pmap confusion, spotted by jmc@ | 2004-03-19 | 1 | -2/+2 | ||
| | ||||||
* | various fixes from Jared Yanovich; | 2004-03-18 | 1 | -26/+33 | ||
| | | | | thanks Jared! | |||||
* | more accurate msg, pr3713 from Andre Lucas | 2004-03-15 | 1 | -4/+2 | ||
| | ||||||
* | bogus leftover SRCS line | 2004-02-23 | 1 | -2/+1 | ||
| | ||||||
* | remove security considerations section. this has been fixed. | 2004-02-23 | 1 | -12/+1 | ||
| | ||||||
* | supposed to use cflags, oops | 2004-02-23 | 1 | -2/+2 | ||
| | ||||||
* | Wall | 2004-02-23 | 1 | -1/+2 | ||
| | ||||||
* | make sure we don't backwards before buffer | 2004-02-23 | 1 | -1/+5 | ||
| | ||||||
* | buffer len paranoia | 2004-02-23 | 1 | -6/+7 | ||
| | ||||||
* | if the heap is non-exec, it makes it hard to find by looking for an exec | 2004-02-23 | 1 | -8/+7 | ||
| | | | | mapping. much better heuristic. | |||||
* | unknown is less ugly than ??, and not a trigraph. requested by deraadt | 2004-02-23 | 1 | -4/+4 | ||
| | ||||||
* | no peeking at kernel or other processes for normal users. ok deraadt@ | 2004-02-23 | 1 | -1/+15 | ||
| | ||||||
* | takin out the trash | 2004-02-19 | 1 | -175/+0 | ||
| | ||||||
* | pedro martelletto tells me stroul returns an unsigned long which | 2004-02-19 | 1 | -2/+2 | ||
| | | | | may be bigger than a pid_t | |||||
* | strtoul for getting pid. ok and numerous hints from deraadt@ | 2004-02-18 | 1 | -9/+20 | ||
| | | | | also correct errbuf size | |||||
* | revoke privs asap; tedu ok | 2004-02-18 | 1 | -1/+15 | ||
| | ||||||
* | a pinch of knf | 2004-02-18 | 1 | -142/+138 | ||
| | ||||||
* | little cleanup. strlcat. usage. don't call atoi on non-numbers. | 2004-02-18 | 1 | -9/+20 | ||
| | | | | mostly spotted by deraadt@ | |||||
* | printing (null) is not so useful. instead print names of missing symbols | 2004-02-18 | 1 | -3/+3 | ||
| | | | | with a useful message. | |||||
* | couple more bits from wiz@netbsd; | 2004-02-17 | 1 | -3/+5 | ||
| | ||||||
* | tidy this page up a bit; | 2004-02-17 | 1 | -62/+64 | ||
| | ||||||
* | malloc checks, strlcpy. based on patch from Vink Joris <nimadeus@pandora.be> | 2004-02-17 | 1 | -4/+7 | ||
| | ||||||
* | catch all vnode types | 2004-02-16 | 1 | -1/+2 | ||
| | ||||||
* | rough cut of netbsd's pmap process memory map inspector. | 2004-02-16 | 4 | -0/+1526 | ||
initially from drahn@, renamed to procmap to avoid conflict with unrelated pmap(9). works more or less as advertised, could definitely use some work though. would be really nice if somebody made it use sysctl and not kmem. more or less ok deraadt@ drahn@ |