home *** CD-ROM | disk | FTP | other *** search
/ Whiteline: Alpha / Whiteline Alpha.iso / linux / atari / source / source.lzh / atari-linux-0.01pl3 / fs / minix / fifo.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-05  |  763 b   |  33 lines

  1. /*
  2.  *  linux/fs/fifo.c
  3.  *
  4.  *  written by Paul H. Hargrove
  5.  *
  6.  * This file is subject to the terms and conditions of the GNU General Public
  7.  * License.  See the file README.legal in the main directory of this archive
  8.  * for more details.
  9.  */
  10.  
  11. #include <linux/sched.h>
  12. #include <linux/minix_fs.h>
  13.  
  14. extern struct file_operations def_fifo_fops;
  15.  
  16. struct inode_operations minix_fifo_inode_operations = {
  17.     &def_fifo_fops,        /* default file operations */
  18.     NULL,            /* create */
  19.     NULL,            /* lookup */
  20.     NULL,            /* link */
  21.     NULL,            /* unlink */
  22.     NULL,            /* symlink */
  23.     NULL,            /* mkdir */
  24.     NULL,            /* rmdir */
  25.     NULL,            /* mknod */
  26.     NULL,            /* rename */
  27.     NULL,            /* readlink */
  28.     NULL,            /* follow_link */
  29.     NULL,            /* bmap */
  30.     NULL,            /* truncate */
  31.     NULL            /* permission */
  32. };
  33.