]> git.proxmox.com Git - mirror_spl-debian.git/blame - include/spl-ctl.h
Prep for for 0.3.0 tag, this is the tag which was used for all
[mirror_spl-debian.git] / include / spl-ctl.h
CommitLineData
ce862656 1#ifndef _DEBUG_CTL_H
2#define _DEBUG_CTL_H
3
4/* Contains shared definitions which both the userspace
5 * and kernelspace portions of splat must agree on.
6 */
7
8typedef struct spl_debug_header {
9 int ph_len;
10 int ph_flags;
11 int ph_subsys;
12 int ph_mask;
13 int ph_cpu_id;
14 int ph_sec;
15 long ph_usec;
16 int ph_stack;
17 int ph_pid;
18 int ph_line_num;
19} spl_debug_header_t;
20
21#endif /* _DEBUG_CTL_H */