xref: /minix3/minix/include/sys/ioc_block.h (revision 433d6423c39e34ec4b79c950597bb2d236f886be)
1*433d6423SLionel Sambuc /*	sys/ioc_block.h - Block ioctl() command codes.
2*433d6423SLionel Sambuc  *
3*433d6423SLionel Sambuc  */
4*433d6423SLionel Sambuc 
5*433d6423SLionel Sambuc #ifndef _S_I_BLOCK_H
6*433d6423SLionel Sambuc #define _S_I_BLOCK_H
7*433d6423SLionel Sambuc 
8*433d6423SLionel Sambuc #include <minix/ioctl.h>
9*433d6423SLionel Sambuc #include <minix/btrace.h>
10*433d6423SLionel Sambuc 
11*433d6423SLionel Sambuc #define BIOCTRACEBUF	_IOW('b', 1, size_t)
12*433d6423SLionel Sambuc #define BIOCTRACECTL	_IOW('b', 2, int)
13*433d6423SLionel Sambuc #define BIOCTRACEGET	_IOR_BIG(3, btrace_entry[BTBUF_SIZE])
14*433d6423SLionel Sambuc 
15*433d6423SLionel Sambuc #endif /* _S_I_BLOCK_H */
16