Age | Commit message (Expand) | Author |
2012-05-06 | take a file descriptor table lock after allocating pipe structures | Mike Belopuhov |
2012-04-22 | Add struct proc * argument to FRELE() and FILE_SET_MATURE() in | Philip Guenthe |
2011-07-08 | keep the fdplock around copyout in pipe. ok matthew | Ted Unangst |
2011-07-08 | Remove the sys_opipe() kernel entry point. sys_pipe() is the future. | Matthew Dempsky |
2011-05-27 | Fix the return values from pipe_kqfilter - kqfilters should return an | Nicholas Marriott |
2010-01-14 | fix typos in comments, no code changes; | Ingo Schwarze |
2009-11-09 | Every selwakeup() should have a matching KNOTE() (even if kqueue isn't | Nicholas Marriott |
2009-10-30 | pipeclose() calls pileseltimeout() which does the KNOTE(); therefore calling | Theo de Raadt |
2009-01-29 | Switch struct stat's timespec members to the names standardized in | Philip Guenthe |
2008-07-11 | de-__inline a trio of functions to shave some space. | Bret Lambert |
2007-11-28 | When updating the timestamps on pipes, use getnanotime() instead of more | Miod Vallat |
2007-08-07 | Correctly deal with EOF on pipe wrt kqueue. Based on a fix present | Todd C. Miller |
2006-11-17 | missing punctuation in comments; from bret lambert | Jason McIntyre |
2005-12-13 | ansi/deregister. No binary change. | Jonathan Gray |
2004-07-22 | remove p arg from fdplock | Ted Unangst |
2004-07-21 | In pipe_read, when the pipelock fails (most likely because we catch a | Artur Grabowski |
2004-06-24 | This moves access to wall and uptime variables in MI code, | Thorsten Lockert |
2004-01-06 | lock filedesc before manipulating. avoids some rare races. | Ted Unangst |
2003-10-03 | Bring several fixes from FreeBSD to our current pipe implementation: | Miod Vallat |
2003-09-23 | Replace select backends with poll backends. selscan() and pollscan() | Todd C. Miller |
2002-03-14 | First round of __P removal in sys | Todd C. Miller |
2002-02-08 | - Rename FILE_{,UN}USE to FREF and FRELE. USE is a bad verb and we don't have | Artur Grabowski |
2002-01-23 | Pool deals fairly well with physical memory shortage, but it doesn't deal | Artur Grabowski |
2001-11-06 | Replace inclusion of <vm/foo.h> with the correct <uvm/bar.h> when necessary. | Miod Vallat |
2001-10-26 | - every new fd created by falloc() is marked as larval and should not be used | Artur Grabowski |
2001-09-19 | merge vm/vm_kern.h into uvm/uvm_extern.h; art@ ok | Michael Shalayeff |
2001-07-05 | Get rid of unnecessary includes. | Artur Grabowski |
2001-06-27 | remove old vm | Artur Grabowski |
2001-06-23 | pool_init, not pool_create | Artur Grabowski |
2001-06-23 | pipe_stat isn't referenced from outside sys_pipe.c anymore | Artur Grabowski |
2001-06-23 | Add pipe_init, call it from main, move the pool initialization into it. | Artur Grabowski |
2001-06-05 | fix kqueue EVFILT_WRITE; okay art@ | Niels Provos |
2001-05-26 | Sync in some improvements from FreeBSD + my own improvements. | Artur Grabowski |
2001-05-14 | gc OLD_PIPE. | Artur Grabowski |
2001-05-14 | Add a fo_stat member to struct fileops. Used soon. | Artur Grabowski |
2001-05-14 | More generic arguments to pipe_stat. | Artur Grabowski |
2001-05-14 | We already have a prototype for pipe_stat in sys/pipe.h | Artur Grabowski |
2001-03-01 | port kqueue changes from freebsd, plus all required openbsd glue. | Niels Provos |
2000-11-16 | support kernel event queues, from FreeBSD by Jonathan Lemon, | Niels Provos |
2000-04-19 | Change struct file interface methods read and write to pass file offset in | Constantine Sapuntzakis |
2000-01-27 | No need to include sys/vmmeter.h | Artur Grabowski |
1999-11-25 | Annoying unnecessary space. | Artur Grabowski |
1999-11-21 | if select returns writable on a pipe, the write should not return | Theo de Raadt |
1999-10-29 | Use M_PIPE instead of M_TEMP. | Artur Grabowski |
1999-10-29 | Remove the "Direct write" code. | Artur Grabowski |
1999-10-27 | Actually make ASYNC pipes generate SIGIO. | Niklas Hallqvist |
1999-07-15 | vm_offset_t -> {v,p}addr_t ; vm_size_t -> {v,p}size_t | Artur Grabowski |
1999-07-13 | introduce fdremove() to mark a file descriptor as unused. fdremove makes | Niels Provos |
1999-06-08 | better fd leak prevention | Theo de Raadt |
1999-06-07 | need seperate sys_pipe() versions, for pipeclose() or soclose() calls | Theo de Raadt |