]> git.proxmox.com Git - mirror_spl-debian.git/commitdiff
Whoops need this!
authorbehlendo <behlendo@7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c>
Fri, 18 Apr 2008 23:42:45 +0000 (23:42 +0000)
committerbehlendo <behlendo@7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c>
Fri, 18 Apr 2008 23:42:45 +0000 (23:42 +0000)
git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@76 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

include/spl-ctl.h [new file with mode: 0644]

diff --git a/include/spl-ctl.h b/include/spl-ctl.h
new file mode 100644 (file)
index 0000000..a20442a
--- /dev/null
@@ -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 */