diff options
author | behlendo <behlendo@7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c> | 2008-03-04 20:06:29 +0000 |
---|---|---|
committer | behlendo <behlendo@7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c> | 2008-03-04 20:06:29 +0000 |
commit | 23f28c4f75b6a7583ac706db331211baa055ca5d (patch) | |
tree | c4cc5710009dfe1f1f37d47e2da9e0e7099eb394 /include | |
parent | 48f940b9439902c2974c705e8fbec3b0a73ffacd (diff) |
Remove spl.h, just include the headers you need.
Add a few more stubs.
git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@24 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c
Diffstat (limited to 'include')
-rw-r--r-- | include/sys/Makefile.am | 2 | ||||
-rw-r--r-- | include/sys/ctype.h | 4 | ||||
-rw-r--r-- | include/sys/inttypes.h | 4 | ||||
-rw-r--r-- | include/sys/spl.h | 19 | ||||
-rw-r--r-- | include/sys/sunddi.h | 4 | ||||
-rw-r--r-- | include/sys/systm.h | 4 |
6 files changed, 17 insertions, 20 deletions
diff --git a/include/sys/Makefile.am b/include/sys/Makefile.am index 8fc6f91b0..2eda85688 100644 --- a/include/sys/Makefile.am +++ b/include/sys/Makefile.am @@ -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 index 000000000..d8e8a0a55 --- /dev/null +++ b/include/sys/ctype.h @@ -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 index 000000000..ff7a65a98 --- /dev/null +++ b/include/sys/inttypes.h @@ -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 index b8c1c3837..000000000 --- a/include/sys/spl.h +++ /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 index 000000000..541102556 --- /dev/null +++ b/include/sys/sunddi.h @@ -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 index 000000000..ca6cca5ce --- /dev/null +++ b/include/sys/systm.h @@ -0,0 +1,4 @@ +#ifndef _SPL_SYSTM_H +#define _SPL_SYSTM_H + +#endif /* SPL_SYSTM_H */ |