etc/services - sync with NetBSD-8
[minix.git] / minix / servers / devman / devman.h
bloba9d77d5f01e94fb751f7e37311fb88712dc6cc1e
1 #ifndef _SERVERS_DEVMAN_DEVMAN_H
2 #define _SERVERS_DEVMAN_DEVMAN_H
3 #define _SYSTEM 1 /* tell headers that this is the kernel */
4 #define DEVMAN_SERVER 1
6 #include <minix/config.h>
7 #include <errno.h>
8 #include <unistd.h>
9 #include <stdlib.h>
10 #include <stdio.h>
11 #include <string.h>
12 #include <lib.h>
13 #include <minix/timers.h>
15 #include <minix/callnr.h>
16 #include <minix/type.h>
17 #include <minix/const.h>
18 #include <minix/com.h>
19 #include <minix/syslib.h>
20 #include <minix/sysutil.h>
21 #include <minix/vfsif.h>
22 #include <minix/endpoint.h>
23 #include <minix/sysinfo.h>
24 #include <minix/u64.h>
25 #include <minix/sysinfo.h>
26 #include <minix/type.h>
27 #include <minix/ipc.h>
29 #include <sys/time.h>
30 #include <sys/times.h>
31 #include <sys/types.h>
32 #include <sys/stat.h>
34 #include <minix/vtreefs.h>
36 #include <minix/devman.h>
37 #include <sys/queue.h>
39 #define BUF_SIZE 4097
41 #define DEVMAN_DEFAULT_MODE (S_IRUSR | S_IRGRP | S_IROTH)
42 #define DEVMAN_STRING_LEN 128
44 #define ADD_STRING "ADD "
45 #define REMOVE_STRING "REMOVE "
47 enum devman_inode_type {
48 DEVMAN_DEVINFO_STATIC,
49 DEVMAN_DEVINFO_DYNAMIC,
50 DEVMAN_DEVICE
53 typedef ssize_t (*devman_read_fn)
54 (char *ptr, size_t len, off_t offset, void *data);
56 struct devman_device_file {
57 int minor;
58 int type;
61 struct devman_static_info_inode {
62 struct devman_device *dev;
63 char data[DEVMAN_STRING_LEN];
66 struct devman_event {
67 char data[DEVMAN_STRING_LEN];
68 TAILQ_ENTRY(devman_event) events;
71 struct devman_event_inode {
72 TAILQ_HEAD(event_head, devman_event) event_queue;
75 struct devman_inode {
76 struct inode *inode;
77 devman_read_fn read_fn;
78 void *data;
79 TAILQ_ENTRY(devman_inode) inode_list;
82 struct devman_device {
83 int dev_id;
84 char * name;
86 int ref_count;
88 int major;
89 #define DEVMAN_DEVICE_ZOMBIE 2
90 #define DEVMAN_DEVICE_BOUND 1
91 #define DEVMAN_DEVICE_UNBOUND 0
92 int state;
94 endpoint_t owner;
96 struct devman_inode inode;
97 struct devman_device *parent;
99 /* the serialized information on this device */
100 struct devman_device_info *info;
102 TAILQ_ENTRY(devman_device) siblings;
104 /* devices attached to the this device */
105 TAILQ_HEAD(children_head, devman_device) children;
106 TAILQ_HEAD(info_head, devman_inode) infos;
108 #endif