| Commit message (Expand) | Author | Age | Files | Lines |
| * | MFC: Change the ABI of some of the structures used by the SYSV IPC API: | John Baldwin | 2009-07-31 | 1 | -9/+12 |
| * | MFC: Several cleanups to the syscall tables: | John Baldwin | 2009-07-24 | 1 | -10/+13 |
| * | MFC: Add a new 'void closefrom(int lowfd)' system call. When called, it | John Baldwin | 2009-07-14 | 1 | -1/+21 |
| * | MFC r181972: Add comments on NOARGS, NODEF, and NOPROTO. | David E. O'Brien | 2008-08-28 | 1 | -0/+8 |
| * | MFC: Add cpuset, an api for thread to cpu binding and cpu resource grouping | John Baldwin | 2008-07-25 | 1 | -0/+15 |
| * | MFC an ABI compatible implementation of Multiple routing tables. | Julian Elischer | 2008-07-24 | 1 | -1/+1 |
| * | MFC: Kernel mode Network Lock Manager. | Doug Rabson | 2008-04-10 | 1 | -1/+2 |
| * | Add thr_kill2 syscall which sends a signal to a thread in another process. | David Xu | 2007-08-16 | 1 | -0/+1 |
| * | Create new syscalls for mmap(), lseek(), pread(), pwrite(), truncate() and | Peter Wemm | 2007-07-04 | 1 | -9/+20 |
| * | Ok, here it is, we finally add SCTP to current. Note that this | Randall Stewart | 2006-11-03 | 1 | -0/+10 |
| * | o Add keyword volatile for user mutex owner field. | David Xu | 2006-10-17 | 1 | -1/+1 |
| * | Audit creat() system call (compat code), and change type for getpagesize(), | Robert Watson | 2006-10-03 | 1 | -2/+2 |
| * | Replace system call thr_getscheduler, thr_setscheduler, thr_setschedparam | David Xu | 2006-09-21 | 1 | -9/+4 |
| * | AUE_SIGALTSTACK instead of AUE_SIGPENDING for sigaltstack(). | Robert Watson | 2006-09-17 | 1 | -1/+1 |
| * | Assign proper audit event identifiers to a number of system calls not | Robert Watson | 2006-09-03 | 1 | -9/+10 |
| * | Use AUE_NTP_ADJTIME for ntp_adjtime() instead of AUE_ADJTIME. | Robert Watson | 2006-09-03 | 1 | -1/+1 |
| * | This is initial version of POSIX priority mutex support, a new userland | David Xu | 2006-08-28 | 1 | -2/+2 |
| * | Grab two syscall numbers. One is used to emulate functionality that linux | Peter Wemm | 2006-08-16 | 1 | -0/+2 |
| * | - Use NOSTD rather than NOIMPL for nfssvc() to match other syscalls | John Baldwin | 2006-08-15 | 1 | -1/+1 |
| * | Now that all system calls are MPSAFE, retire the SYF_MPSAFE flag used to | John Baldwin | 2006-07-28 | 1 | -381/+377 |
| * | Various fixes to comments in the syscall master files including removing | John Baldwin | 2006-07-28 | 1 | -2/+2 |
| * | Add syscalls thr_setscheduler, thr_getscheduler, and thr_setschedparam, | David Xu | 2006-07-13 | 1 | -0/+9 |
| * | - Add conditional VFS Giant locking to getdents_common() (linux ABIs), | John Baldwin | 2006-07-11 | 1 | -1/+1 |
| * | Add audit events for the extended attribute system calls. | Wayne Salamon | 2006-07-05 | 1 | -22/+26 |
| * | - Expand the scope of Giant some in mount(2) to protect the vfsp structure | John Baldwin | 2006-06-27 | 1 | -3/+3 |
| * | Revert previous commit at davidxu's insistance. Instead, use __DECONST | Dag-Erling Smørgrav | 2006-03-28 | 1 | -1/+1 |
| * | The undocumented and deprecated system call _umtx_op() takes two pointer | Dag-Erling Smørgrav | 2006-03-28 | 1 | -1/+1 |
| * | Implement aio_fsync() syscall. | David Xu | 2006-03-23 | 1 | -0/+1 |
| * | Let kernel POSIX timer code and mqueue code to use integer as a resource | David Xu | 2006-03-01 | 1 | -12/+12 |
| * | Prefer AUE_FOO audit identifiers to AUE_O_FOO, which are largely left | Robert Watson | 2006-02-06 | 1 | -22/+22 |
| * | Implement thr_set_name to set a name for thread. | David Xu | 2006-02-05 | 1 | -0/+1 |
| * | Assign audit event identifiers to many system calls. | Robert Watson | 2006-02-03 | 1 | -226/+225 |
| * | Map audit-related system calls to audit event identifiers. | Robert Watson | 2006-02-02 | 1 | -10/+10 |
| * | Make aio code MP safe. | David Xu | 2006-01-22 | 1 | -11/+11 |
| * | Add abort2() systemcall. | Poul-Henning Kamp | 2005-12-23 | 1 | -0/+1 |
| * | Don't use OpenBSD syscall numbers, instead, use new syscall numbers | David Xu | 2005-11-27 | 1 | -16/+22 |
| * | Bring in experimental kernel support for POSIX message queue. | David Xu | 2005-11-26 | 1 | -6/+16 |
| * | Fix sigevent's POSIX incompatible problem by adding member fields | David Xu | 2005-10-30 | 1 | -8/+10 |
| * | Implement POSIX timers. Current only CLOCK_REALTIME and CLOCK_MONOTONIC | David Xu | 2005-10-23 | 1 | -5/+9 |
| * | Const-qualify ksem_timedwait's parameter abstime as it's only passed in. | Stefan Farfeleder | 2005-10-18 | 1 | -1/+1 |
| * | 1. Change prototype of trapsignal and sendsig to use ksiginfo_t *, most | David Xu | 2005-10-14 | 1 | -1/+1 |
| * | Mark the extended attribute syscalls as being MP safe. | Christian S.J. Peron | 2005-09-27 | 1 | -13/+13 |
| * | Mark second instance of lchown() MP safe just like the first. | John Baldwin | 2005-07-08 | 1 | -1/+1 |
| * | - Add two new system calls: preadv() and pwritev() which are like readv() | John Baldwin | 2005-07-07 | 1 | -2/+5 |
| * | Introduce a new field in the syscalls.master file format to hold the | Robert Watson | 2005-05-30 | 1 | -561/+705 |
| * | Normalize white space in syscalls.master: try to use tabs before system | Robert Watson | 2005-05-29 | 1 | -20/+20 |
| * | Mark ntp_gettime() as MSTD, since its system call path will acquire | Robert Watson | 2005-05-28 | 1 | -1/+1 |
| * | Mark the following compatability system calls as MCOMPAT or MCOMPAT4 based | Robert Watson | 2005-05-28 | 1 | -8/+8 |
| * | Mark quotactl() as MSTD. | Robert Watson | 2005-05-28 | 1 | -1/+1 |
| * | Mark kenv(2) as MPSAFE, since it appears to be properly locked down. | Robert Watson | 2005-05-28 | 1 | -1/+1 |