From: behlendo Date: Fri, 18 Apr 2008 23:42:45 +0000 (+0000) Subject: Whoops need this! X-Git-Tag: debian/0.7.9-2~754 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=ce86265693be95e6e2213c18c0d310088c8dccbb;p=mirror_spl-debian.git Whoops need this! git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@76 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c --- diff --git a/include/spl-ctl.h b/include/spl-ctl.h new file mode 100644 index 0000000..a20442a --- /dev/null +++ b/include/spl-ctl.h @@ -0,0 +1,21 @@ +#ifndef _DEBUG_CTL_H +#define _DEBUG_CTL_H + +/* Contains shared definitions which both the userspace + * and kernelspace portions of splat must agree on. + */ + +typedef struct spl_debug_header { + int ph_len; + int ph_flags; + int ph_subsys; + int ph_mask; + int ph_cpu_id; + int ph_sec; + long ph_usec; + int ph_stack; + int ph_pid; + int ph_line_num; +} spl_debug_header_t; + +#endif /* _DEBUG_CTL_H */