Project

General

Profile

Statistics
| Revision:

root / lab4 / .minix-src / include / sys / ioc_disk.h @ 13

History | View | Annotate | Download (498 Bytes)

1
/*        sys/ioc_disk.h - Disk ioctl() command codes.        Author: Kees J. Bot
2
 *                                                                23 Nov 2002
3
 *
4
 */
5

    
6
#ifndef _S_I_DISK_H
7
#define _S_I_DISK_H
8

    
9
#include <minix/ioctl.h>
10

    
11
#define DIOCSETP        _IOW('d', 3, struct part_geom)
12
#define DIOCGETP        _IOR('d', 4, struct part_geom)
13
#define DIOCEJECT        _IO ('d', 5)
14
#define DIOCTIMEOUT        _IOWR('d', 6, int)
15
#define DIOCOPENCT        _IOR('d', 7, int)
16
#define DIOCFLUSH        _IO ('d', 8)
17
#define DIOCSETWC        _IOW('d', 9, int)
18
#define DIOCGETWC        _IOR('d', 10, int)
19

    
20
#endif /* _S_I_DISK_H */