NetBSD/sys/miscfs/fifofs/fifo.h

80 lines
2.9 KiB
C
Raw Normal View History

2005-12-11 15:16:03 +03:00
/* $NetBSD: fifo.h,v 1.24 2005/12/11 12:24:50 christos Exp $ */
1993-03-21 12:45:37 +03:00
/*
* Copyright (c) 1991, 1993
* The Regents of the University of California. All rights reserved.
1993-03-21 12:45:37 +03:00
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the University nor the names of its contributors
1993-03-21 12:45:37 +03:00
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
1998-03-01 05:20:01 +03:00
* @(#)fifo.h 8.6 (Berkeley) 5/21/95
1993-03-21 12:45:37 +03:00
*/
1998-06-23 02:00:59 +04:00
1993-03-21 12:45:37 +03:00
/*
* Prototypes for fifo operations on vnodes.
*/
2005-08-31 00:08:01 +04:00
int fifo_lookup(void *);
#define fifo_create genfs_badop
#define fifo_mknod genfs_badop
2005-08-31 00:08:01 +04:00
int fifo_open(void *);
int fifo_close(void *);
#define fifo_access genfs_ebadf
#define fifo_getattr genfs_ebadf
#define fifo_setattr genfs_ebadf
2005-08-31 00:08:01 +04:00
int fifo_read(void *);
int fifo_write(void *);
#define fifo_lease_check genfs_nullop
2005-08-31 00:08:01 +04:00
int fifo_ioctl(void *);
int fifo_poll(void *);
int fifo_kqfilter(void *);
1998-03-01 05:20:01 +03:00
#define fifo_revoke genfs_revoke
#define fifo_mmap genfs_badop
#define fifo_fsync genfs_nullop
#define fifo_seek genfs_badop
#define fifo_remove genfs_badop
#define fifo_link genfs_badop
#define fifo_rename genfs_badop
#define fifo_mkdir genfs_badop
#define fifo_rmdir genfs_badop
#define fifo_symlink genfs_badop
#define fifo_readdir genfs_badop
#define fifo_readlink genfs_badop
#define fifo_abortop genfs_badop
#define fifo_reclaim genfs_nullop
#define fifo_lock genfs_lock
#define fifo_unlock genfs_unlock
2005-08-31 00:08:01 +04:00
int fifo_inactive(void *);
int fifo_bmap(void *);
#define fifo_strategy genfs_badop
2005-08-31 00:08:01 +04:00
int fifo_print(void *);
#define fifo_islocked genfs_islocked
2005-08-31 00:08:01 +04:00
int fifo_pathconf(void *);
#define fifo_advlock genfs_einval
#define fifo_bwrite genfs_nullop
#define fifo_putpages genfs_null_putpages
1996-02-10 01:39:56 +03:00
2005-08-31 00:08:01 +04:00
void fifo_printinfo(struct vnode *);
1996-02-10 01:39:56 +03:00
2005-08-31 00:08:01 +04:00
extern int (**fifo_vnodeop_p)(void *);