]> git.proxmox.com Git - mirror_zfs.git/commitdiff
Remove spl.h, just include the headers you need.
authorbehlendo <behlendo@7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c>
Tue, 4 Mar 2008 20:06:29 +0000 (20:06 +0000)
committerbehlendo <behlendo@7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c>
Tue, 4 Mar 2008 20:06:29 +0000 (20:06 +0000)
Add a few more stubs.

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@24 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

include/sys/Makefile.am
include/sys/ctype.h [new file with mode: 0644]
include/sys/inttypes.h [new file with mode: 0644]
include/sys/spl.h [deleted file]
include/sys/sunddi.h [new file with mode: 0644]
include/sys/systm.h [new file with mode: 0644]
modules/splat/splat-internal.h

index 8fc6f91b0e7390517d26b70272e4986d96750bdc..2eda85688d3cc816dd4de367a294d04bdde5ec6d 100644 (file)
@@ -1,5 +1,5 @@
 EXTRA_DIST  = callb.h cmn_err.h condvar.h cred.h
 EXTRA_DIST += debug.h kmem.h kstat.h
 EXTRA_DIST += mutex.h param.h random.h rwlock.h
-EXTRA_DIST += spl.h taskq.h thread.h time.h
+EXTRA_DIST += taskq.h thread.h time.h
 EXTRA_DIST += timer.h types.h
diff --git a/include/sys/ctype.h b/include/sys/ctype.h
new file mode 100644 (file)
index 0000000..d8e8a0a
--- /dev/null
@@ -0,0 +1,4 @@
+#ifndef _SPL_CTYPE_H
+#define _SPL_CTYPE_H
+
+#endif /* SPL_CTYPE_H */
diff --git a/include/sys/inttypes.h b/include/sys/inttypes.h
new file mode 100644 (file)
index 0000000..ff7a65a
--- /dev/null
@@ -0,0 +1,4 @@
+#ifndef _SPL_INTTYPES_H
+#define _SPL_INTTYPES_H
+
+#endif /* SPL_INTTYPES_H */
diff --git a/include/sys/spl.h b/include/sys/spl.h
deleted file mode 100644 (file)
index b8c1c38..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#ifndef _SPL_H
-#define _SPL_H
-
-#include <sys/callb.h>
-#include <sys/condvar.h>
-#include <sys/cred.h>
-#include <sys/sysmacros.h>
-#include <sys/kmem.h>
-#include <sys/kstat.h>
-#include <sys/mutex.h>
-#include <sys/random.h>
-#include <sys/rwlock.h>
-#include <sys/taskq.h>
-#include <sys/thread.h>
-#include <sys/time.h>
-#include <sys/timer.h>
-#include <sys/types.h>
-
-#endif /* _SPL_H */
diff --git a/include/sys/sunddi.h b/include/sys/sunddi.h
new file mode 100644 (file)
index 0000000..5411025
--- /dev/null
@@ -0,0 +1,4 @@
+#ifndef _SPL_SUNDDI_H
+#define _SPL_SUNDDI_H
+
+#endif /* SPL_SUNDDI_H */
diff --git a/include/sys/systm.h b/include/sys/systm.h
new file mode 100644 (file)
index 0000000..ca6cca5
--- /dev/null
@@ -0,0 +1,4 @@
+#ifndef _SPL_SYSTM_H
+#define _SPL_SYSTM_H
+
+#endif /* SPL_SYSTM_H */
index d44c324632c85538c97882d90f6db8e0b029ae8b..061a9d0181a1dad020d4b3a79e592f0f00053964 100644 (file)
 #include <asm/uaccess.h>
 #include <stdarg.h>
 
-#include <sys/spl.h>
+#include <sys/callb.h>
+#include <sys/condvar.h>
+#include <sys/cred.h>
+#include <sys/sysmacros.h>
+#include <sys/kmem.h>
+#include <sys/kstat.h>
+#include <sys/mutex.h>
+#include <sys/random.h>
+#include <sys/rwlock.h>
+#include <sys/taskq.h>
+#include <sys/thread.h>
+#include <sys/time.h>
+#include <sys/timer.h>
+#include <sys/types.h>
+
 #include "splat-ctl.h"
 
 #define SPLAT_SUBSYSTEM_INIT(type)                                      \