diff options
author | behlendo <behlendo@7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c> | 2008-03-08 00:58:32 +0000 |
---|---|---|
committer | behlendo <behlendo@7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c> | 2008-03-08 00:58:32 +0000 |
commit | 12472b242dc32f681a0d30efe97359ce67959e58 (patch) | |
tree | e9e04d9a89c83b8abf03c86fe3b6211ade6de690 | |
parent | 05ae387b5024b6b7014287e09ed9ce74befe91a3 (diff) |
Just filling in more of the env.
git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@32 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c
-rw-r--r-- | include/sys/attr.h | 4 | ||||
-rw-r--r-- | include/sys/sysmacros.h | 1 | ||||
-rw-r--r-- | include/sys/systeminfo.h | 4 | ||||
-rw-r--r-- | include/sys/thread.h | 5 |
4 files changed, 12 insertions, 2 deletions
diff --git a/include/sys/attr.h b/include/sys/attr.h new file mode 100644 index 000000000..47469ced6 --- /dev/null +++ b/include/sys/attr.h @@ -0,0 +1,4 @@ +#ifndef _SPL_ATTR_H +#define _SPL_ATTR_H + +#endif /* SPL_ATTR_H */ diff --git a/include/sys/sysmacros.h b/include/sys/sysmacros.h index 08d0e1971..ababed0fd 100644 --- a/include/sys/sysmacros.h +++ b/include/sys/sysmacros.h @@ -39,6 +39,7 @@ extern "C" { #define DEV_BSHIFT 9 /* log2(DEV_BSIZE) */ #define max_ncpus 64 +#define CPU_SEQID smp_processor_id() /* I think... */ #define _NOTE(x) /* 0..MAX_PRIO-1: Process priority diff --git a/include/sys/systeminfo.h b/include/sys/systeminfo.h new file mode 100644 index 000000000..e297f2a5a --- /dev/null +++ b/include/sys/systeminfo.h @@ -0,0 +1,4 @@ +#ifndef _SPL_SYSTEMINFO_H +#define _SPL_SYSTEMINFO_H + +#endif /* SPL_SYSTEMINFO_H */ diff --git a/include/sys/thread.h b/include/sys/thread.h index 4532aee5b..44e2902a6 100644 --- a/include/sys/thread.h +++ b/include/sys/thread.h @@ -27,12 +27,13 @@ extern "C" { #endif #define thread_create(stk, stksize, func, arg, len, pp, state, pri) \ - __thread_create(stk, stksize, func, arg, len, pp, state, pri) + __thread_create(stk, stksize, (void (*)(void *))func, \ + arg, len, pp, state, pri) #define thread_exit() __thread_exit() #define curthread get_current() extern kthread_t *__thread_create(caddr_t stk, size_t stksize, - void (*proc)(void *), void *args, + void (*func)(void *), void *args, size_t len, int *pp, int state, pri_t pri); extern void __thread_exit(void); |