aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/file.h
Commit message (Expand)AuthorAgeFilesLines
* Unbreak handling of descriptors opened with O_EXEC by fexecve(2).Mateusz Guzik2012-07-081-0/+2
* Extend the KPI to lock and unlock f_offset member of struct file. ItKonstantin Belousov2012-07-021-1/+16
* Further refine the implementation of POSIX_FADV_NOREUSE.John Baldwin2012-06-191-0/+2
* Remove MALLOC_DECLAREs of nonexisting malloc-pools.Ed Schouten2011-11-061-4/+0
* Add the posix_fadvise(2) system call. It is somewhat similar toJohn Baldwin2011-11-041-1/+14
* Add experimental support for process descriptorsJonathan Anderson2011-08-181-0/+1
* Add the fo_chown and fo_chmod methods to struct fileops and use themKonstantin Belousov2011-08-161-0/+27
* Second-to-last commit implementing Capsicum capabilities in the FreeBSDRobert Watson2011-08-111-8/+17
* Rework _fget to accept capability parameters.Jonathan Anderson2011-07-051-0/+1
* Define cap_rights_t and DTYPE_CAPABILITY, which are required toJonathan Anderson2011-07-011-0/+1
* - Merge changes to the base system to support OFED. These includeJeff Roberson2011-03-211-0/+1
* Apply band-aid around function-like macro fdrop() without turning it intoJung-uk Kim2010-06-111-1/+8
* Use ANSI declarations instead of K&R.Ed Schouten2009-12-281-39/+14
* style(9)David E. O'Brien2009-01-011-1/+1
* Integrate the new MPSAFE TTY layer to the FreeBSD operating system.Ed Schouten2008-08-201-0/+1
* Rework the lifetime management of the kernel implementation of POSIXJohn Baldwin2008-06-271-0/+1
* Use _WANT_FILE to make struct file visible from userland. This isPawel Jakub Dawidek2008-05-261-1/+3
* Replace direct atomic operation for the file refcount witht theAttilio Rao2008-05-251-3/+5
* Implement the per-open file data for the cdev.Konstantin Belousov2008-05-211-0/+2
* Add a new file descriptor type for IPC shared memory objects and use it toJohn Baldwin2008-01-081-0/+1
* Make ftruncate a 'struct file' operation rather than a vnode operation.John Baldwin2008-01-071-0/+16
* Remove explicit locking of struct file.Jeff Roberson2007-12-301-60/+31
* - Close a race between enumerating UNIX domain socket pcb structures viaJohn Baldwin2007-01-051-0/+1
* Allow concurrent read(2)/readv(2) access to a file.Paul Saab2006-05-161-1/+7
* Bring in experimental kernel support for POSIX message queue.David Xu2005-11-261-0/+1
* Make some file/filedesc related functions staticPoul-Henning Kamp2005-02-101-1/+0
* Add a place-holder f_label void * for a future struct label pointerRobert Watson2005-02-021-0/+1
* /* -> /*- for license, minor formatting changesWarner Losh2005-01-071-1/+1
* "nfiles" is a bad name for a global variable. Call it "openfiles" insteadPoul-Henning Kamp2004-12-011-2/+2
* Save a pointless FILE_LOCK_ASSERT() call in fhold.Poul-Henning Kamp2004-11-081-1/+1
* Add the f_vnode pointer to struct xfile, shortly it will no longer bePoul-Henning Kamp2004-06-191-0/+1
* Remove advertising clause from University of California Regent's license,Warner Losh2004-04-071-4/+0
* Add a f_vnode field to struct file.Poul-Henning Kamp2003-06-221-0/+1
* Move FMARK and FDEFER til sys/file.h where they belong.Poul-Henning Kamp2003-06-201-7/+15
* Introduce a new flag on a file descriptor: DFLAG_SEEKABLE and use thatPoul-Henning Kamp2003-06-181-0/+1
* Do not allow kqueues to be passed via unix domain sockets.Alfred Perlstein2003-02-151-0/+4
* Bow to the whining masses and change a union back into void *. RetainMatthew Dillon2003-01-131-22/+2
* Change struct file f_data to un_data, a union of the correct structMatthew Dillon2003-01-121-2/+24
* White-space changes.Poul-Henning Kamp2002-12-241-16/+15
* Move the declaration of the socket fileops from socketvar.h to file.h.Poul-Henning Kamp2002-12-231-0/+14
* Detediousficate declaration of fileops array members by introducingPoul-Henning Kamp2002-12-231-30/+35
* add DTYPE_CRYPTO for use by /dev/crypto supportSam Leffler2002-10-041-0/+1
* Include <sys/types.h> directly rather than depending on <sys/fcntl.h>Mike Barcroft2002-09-171-0/+1
* In continuation of early fileop credential changes, modify fo_ioctl() toRobert Watson2002-08-171-4/+5
* Make similar changes to fo_stat() and fo_poll() as made earlier toRobert Watson2002-08-161-9/+10
* For some reason, the flags and td arguments in the fo_read prototypeRobert Watson2002-08-151-1/+1
* In order to better support flexible and extensible access control,Robert Watson2002-08-151-10/+12
* Add struct xfile, which will be used instead of struct file for sysctlDag-Erling Smørgrav2002-07-311-8/+32
* More caddr_t removal, make fo_ioctl take a void * instead of a caddr_t.Alfred Perlstein2002-06-291-3/+3
* change f_data field in struct file from caddr_t to void *.Alfred Perlstein2002-06-281-1/+1