| Commit message (Expand) | Author | Age | Files | Lines |
* | This moves access to wall and uptime variables in MI code, |  tholo | 2004-06-24 | 1 | -23/+30 |
* | debranch SMP, have fun |  niklas | 2004-06-13 | 1 | -3/+4 |
* | Add an nfds_t type as per POSIX and also add pollfd_t like Solaris has. |  millert | 2003-12-10 | 1 | -11/+11 |
* | Replace select backends with poll backends. selscan() and pollscan() |  millert | 2003-09-23 | 1 | -40/+31 |
* | match syscallargs comments with reality |  henning | 2003-09-01 | 1 | -2/+2 |
* | remove caddr_t casts. it's just silly to cast something when the function |  tedu | 2003-07-21 | 1 | -15/+14 |
* | fix nfds type; tedu marc ok |  deraadt | 2003-06-23 | 1 | -2/+7 |
* | Remove the advertising clause in the UCB license which Berkeley |  millert | 2003-06-02 | 1 | -6/+2 |
* | Missing FRELE() call on writev(2) error condition; art@ ok. |  aaron | 2002-08-12 | 1 | -3/+5 |
* | SCARG cleanup; okay millert@ |  provos | 2002-08-11 | 1 | -21/+16 |
* | First round of __P removal in sys |  millert | 2002-03-14 | 1 | -4/+4 |
* | On sparc, PAGE_SIZE and friends might not be a compile-time constant. |  miod | 2002-03-13 | 1 | -1/+3 |
* | More FREF/FRELE on relevant places. Now, only sys_mmap and a bunch of ioctl functions in sys/compat are left. |  art | 2002-02-13 | 1 | -10/+15 |
* | Require a FREFd file in dofilewrite{,v}. |  art | 2002-02-08 | 1 | -3/+9 |
* | require a FREFd fp in dofilereadv. Fix some comments. |  art | 2002-02-08 | 1 | -3/+6 |
* | - Rename FILE_{,UN}USE to FREF and FRELE. USE is a bad verb and we don't have |  art | 2002-02-08 | 1 | -12/+3 |
* | Add counting of temporary references to a struct file (as opposed to references |  art | 2002-02-05 | 1 | -4/+4 |
* | Be more consistent about using fd_getfile where it matters. |  art | 2002-02-02 | 1 | -13/+4 |
* | in poll, if fd is < 0, clear revents; bjy@mogua.org |  deraadt | 2001-11-14 | 1 | -1/+4 |
* | - every new fd created by falloc() is marked as larval and should not be used |  art | 2001-10-26 | 1 | -39/+14 |
* | No need to check M_WAIT/M_WAITOK malloc return values. (art@ ok) |  ho | 2001-05-16 | 1 | -6/+2 |
* | Change the ktrace interface functions from taking the trace vnode to taking the |  art | 2000-11-10 | 1 | -5/+5 |
* | replace MALLOC/FREE w/ malloc/free for non-constant-sized memory allocations; art@ ok |  mickey | 2000-09-27 | 1 | -11/+9 |
* | Isn't code sharing great? |  art | 2000-07-07 | 1 | -11/+10 |
* | When select is awakened by a select collission, we need to recalculate |  art | 2000-07-07 | 1 | -13/+9 |
* | p{read,write}{,v} from csapuntz, partial NetBSD origin I think |  deraadt | 2000-04-20 | 1 | -89/+231 |
* | Change struct file interface methods read and write to pass file offset in |  csapuntz | 2000-04-19 | 1 | -5/+5 |
* | revents already cleared; d |  deraadt | 1999-11-29 | 1 | -4/+2 |
* | handle invalid file descriptors in poll more carefully; d |  deraadt | 1999-11-29 | 1 | -8/+20 |
* | optimize poll() for small nfds, by avoiding malloc |  deraadt | 1999-08-04 | 1 | -4/+7 |
* | correct return value of poll(); noted by d@ |  deraadt | 1999-05-24 | 1 | -4/+6 |
* | in poll(), constrain nfds better, to avoid kvm starvation; alex |  deraadt | 1999-03-22 | 1 | -2/+7 |
* | Use IOV_MAX, not the deprecated UIO_MAXIOV |  millert | 1999-02-14 | 1 | -3/+3 |
* | readv/writev with iov_len == 0 is legal (was already ok in uipc_syscalls.c). |  millert | 1999-02-14 | 1 | -3/+5 |
* | writev takes an int as param #3; theo |  millert | 1998-07-28 | 1 | -2/+2 |
* | For read, write, send, sendto, recv, recvfrom return EINVAL is size arg > SSIZE_MAX. For readv, writev, sendmsg, recvmsg return EINVAL if sum of the over iov_len values overflows an ssize_t. Based on what XPG 4.2 says (though XPG is not entirely consistent here). Basically since the return va... |  millert | 1998-07-28 | 1 | -16/+18 |
* | Return EINVAL when msg_iovlen or iovcnt <= 0; Make uio_resid unsigned (size_t) and don't return EINVAL if it is < 0 in sys_{read,write}. Remove check for uio_resid < 0 uiomove() now that uio_resid is unsigned and brack remaining panics with #ifdef DIAGNOSTIC. vn_rdwr() must now take a size_t * ... |  millert | 1998-07-28 | 1 | -5/+5 |
* | More missing type changes; pointed out by deraadt@OpenBSD.org |  tholo | 1998-02-09 | 1 | -2/+2 |
* | Updates for VFS Lite 2 + soft update. |  csapuntz | 1997-11-06 | 1 | -17/+5 |
* | back out vfs lite2 till after 2.2 |  deraadt | 1997-10-06 | 1 | -5/+17 |
* | VFS Lite2 Changes |  csapuntz | 1997-10-06 | 1 | -17/+5 |
* | for non-tty TIOCSPGRP/F_SETOWN/FIOSETOWN pgid setting calls, store uid |  deraadt | 1997-08-31 | 1 | -2/+6 |
* | select subsystem si_pid becomes si_selpid, to not conflict against user/kernel siginfo si_pid #define |  deraadt | 1997-01-27 | 1 | -7/+7 |
* | i added a fair bit to this |  deraadt | 1996-10-12 | 1 | -1/+2 |
* | poll() as a system call |  deraadt | 1996-05-18 | 1 | -1/+123 |
* | if nfds > FD_SETSIZE, allocate room for the bitmasks inside the kernel; also |  deraadt | 1996-05-07 | 1 | -12/+47 |
* | partial sync with netbsd 960418, more to come |  deraadt | 1996-04-21 | 1 | -3/+3 |
* | From NetBSD: 960217 merge |  niklas | 1996-03-03 | 1 | -10/+35 |
* | initial import of NetBSD tree |  deraadt | 1995-10-18 | 1 | -0/+699 |