File: rtl_posixio.h

package info (click to toggle)
rtlinux 2.0rel-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 2,068 kB
  • ctags: 1,178
  • sloc: ansic: 7,169; makefile: 779; sh: 89
file content (48 lines) | stat: -rw-r--r-- 1,352 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
 * RT-Linux POSIX IO level
 *
 *  Copyright (C) 1999 FSM Labs (http://www.fsmlabs.com/)
 *  Written by Michael Barabanov <baraban@fsmlabs.com>
 */

#ifndef __RTL_POSIXIO_H__
#define __RTL_POSIXIO_H__

#ifdef __KERNEL__
#include <linux/types.h>
#include <linux/fs.h>
#include <rtl_conf.h>
// may disappear in future versions
extern int rtl_get_minor(int fd);


/* typedef int RTL_INODE; */
/* we only need the minor number */
#define RTL_MINOR_FROM_FILEPTR(fptr) ((fptr)->f_minor)

struct rtl_file_operations;

struct rtl_file {
	struct rtl_file_operations	*f_op;
	int f_minor;
	int f_flags;
	loff_t                  f_pos;
};

struct rtl_file_operations {
	loff_t (*llseek) (struct rtl_file *, loff_t, int);
	ssize_t (*read) (struct rtl_file *, char *, size_t, loff_t *);
	ssize_t (*write) (struct rtl_file *, const char *, size_t, loff_t *);
	unsigned int (*poll) (struct rtl_file *, struct poll_table_struct *);
	int (*ioctl) (struct rtl_file *, unsigned int, unsigned long);
	int (*mmap) (struct rtl_file *, void  *start,  size_t length, int prot , int flags, off_t offset, caddr_t *result);
	int (*open) (struct rtl_file *);
	int (*release) (struct rtl_file *);
};

extern int rtl_register_chrdev(unsigned int, const char *, struct rtl_file_operations *);
extern int rtl_unregister_chrdev(unsigned int major, const char * name);
#endif

#endif