Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-03-14 | Turn the ptrace(2) syscall into a kernel compile option, option PTRACE in | Miod Vallat | |
your kernel configuration file. By default, GENERIC will enable this. When PTRACE is not enabled, several ptrace-like features of the procfs filesystem will be disabled as well (namely, the ability to read and write any process' registers, as well as attching, single stepping and detaching to/from processes). This should help paranoid people build better sandboxens, and us to build smaller ramdisks. | |||
2002-02-22 | Extended Attribute support from FreeBSD/TrustedBSD ok art@, deraadt@ | Dale Rahn | |
2001-06-26 | implement djb's getpeereid(2), to allow local-domain servers to determine ↵ | Dug Song | |
client credentials. mostly from superscript.com. deraadt@ ok | |||
2001-06-16 | sysarch() takes a void * | Theo de Raadt | |
2001-05-16 | Create COMPAT_25 and move ogetfsstat, ostatfs and ostatfs into it. | Todd C. Miller | |
Create COMPAT_23 and move __osemctl, omsgctl, oshmctl there. | |||
2001-03-09 | Add mlockall and munlockall (dummy for the old vm system). | Artur Grabowski | |
2000-11-16 | support kernel event queues, from FreeBSD by Jonathan Lemon, | Niels Provos | |
okay art@, millert@ | |||
2000-09-12 | sys_getsid() and sys_getpgid() return pid_t, not int (though pid_t *is* | Todd C. Miller | |
an int so this didn't break anything). | |||
2000-06-22 | make vtrace always obsolte; art@ | Michael Shalayeff | |
2000-05-01 | sys_semconfig goes away | Theo de Raadt | |
2000-04-20 | system call hookup for p{read,write}{,v} | Theo de Raadt | |
2000-02-07 | always include sys_getfh. add fhopen, fhstat, and fhstatfs | assar | |
1999-06-07 | replacement pipe() system call; copies data into place inside kernel, so | Theo de Raadt | |
that EFAULT return value is possible | |||
1999-05-31 | New struct statfs with mount options. NOTE: this replaces statfs(2), | Todd C. Miller | |
fstatfs(2), and getfsstat(2) so you will need to build a new kernel before doing a "make build" or you will get "unimplemented syscall" errors. The new struct statfs has the following featuires: o Has a u_int32_t flags field--now softdep can have a real flag. o Uses u_int32_t instead of longs (nicer on the alpha). Note: the man page used to lie about setting invalid/unused fields to -1. SunOS does that but our code never has. o Gets rid of f_type completely. It hasn't been used since NetBSD 0.9 and having it there but always 0 is confusing. It is conceivable that this may cause some old code to not compile but that is better than silently breaking. o Adds a mount_info union that contains the FSTYPE_args struct. This means that "mount" can now tell you all the options a filesystem was mounted with. This is especially nice for NFS. Other changes: o The linux statfs emulation didn't convert between BSD fs names and linux f_type numbers. Now it does, since the BSD f_type number is useless to linux apps (and has been removed anyway) o FreeBSD's struct statfs is different from our (both old and new) and thus needs conversion. Previously, the OpenBSD syscalls were used without any real translation. o mount(8) will now show extra info when invoked with no arguments. However, to see *everything* you need to use the -v (verbose) flag. | |||
1999-05-22 | Add swapctl(2) system call. | Tobias Weingartner | |
1999-02-15 | sendto(2) takes a socklen_t as well | Todd C. Miller | |
1999-02-15 | use socklen_t | Todd C. Miller | |
1998-11-18 | syscalls behind #ifdef should have an #else | Artur Grabowski | |
1998-09-17 | always use xfspioctl | Artur Grabowski | |
1998-08-30 | clean | Theo de Raadt | |
1998-08-30 | glue for xfspioctl syscall | Artur Grabowski | |
1998-06-12 | ifdef the new sem/shm/msg syscalls | Theo de Raadt | |
1998-06-11 | move shm/msg/sem calls because ipc.h is getting uid_t and friends | Theo de Raadt | |
1998-06-02 | const mlock(2) and munlock(2) | Theo de Raadt | |
1998-05-11 | const a few more calls | Theo de Raadt | |
1998-04-25 | readlink() 3rd param is size_t; XPG | Theo de Raadt | |
1998-02-16 | Make "flags" field in f?chflags(2) consistent--unsigned int | Todd C. Miller | |
1998-02-10 | revert mode_t things to int, obviously requires more thought and work | Theo de Raadt | |
1998-02-08 | Correct many types | Thorsten Lockert | |
1998-01-02 | make mmap() return void *, add MAP_FAILED | Theo de Raadt | |
1997-11-14 | convert to void *addr | Theo de Raadt | |
1997-11-13 | make msync() have 3 args | Theo de Raadt | |
1997-11-13 | add getsid(2), XPG4 | Theo de Raadt | |
1997-08-29 | prefix ntp system calls with sys_ like other system calls | kstailey | |
1997-05-30 | add getpgid(2) from NetBSD | kstailey | |
1997-04-20 | Add new POSIX 1003.1b related syscalls; from pk@NetBSD | Thorsten Lockert | |
1997-01-26 | Add lchown(2). | Jason Downs | |
1996-10-29 | pretty | Theo de Raadt | |
1996-10-04 | sys_getfh is NFSCLIENT|NFSSERVER | Theo de Raadt | |
1996-08-25 | issetugid() system call discovers if a process was started setuid or setgid | Theo de Raadt | |
1996-05-18 | poll() as a system call | Theo de Raadt | |
1996-05-02 | Implement futimes() | Theo de Raadt | |
1996-04-28 | First argument to profil(2) should be `char *', not `caddr_t'. | Thorsten Lockert | |
1996-04-19 | NetBSD 960317 merge | Niklas Hallqvist | |
1996-01-29 | Add kernel PLL for system clock | Thorsten Lockert | |
Add ntp_adjtime() and ntp_gettime() system calls Mostly stolen from FreeBSD | |||
1996-01-10 | plan9-like rfork() implimentation by me based on some earlier incomplete | Theo de Raadt | |
work by rminnich@Sarnoff.COM. still needs RFNOWAIT support. | |||
1996-01-07 | add minherit() system call | Theo de Raadt | |
1995-12-14 | from netbsd; change profil() arguments | Theo de Raadt | |
1995-10-18 | initial import of NetBSD tree | Theo de Raadt | |