diff options
author | Brian Behlendorf <[email protected]> | 2011-11-11 09:03:31 -0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2011-11-11 09:18:28 -0800 |
commit | 1114ae6ae74a287478cd8a34770fc4a907f84134 (patch) | |
tree | d3752a329ba7f41f0be72ca2ff6e558b25b77fd2 /include/sys/tsd.h | |
parent | 948914d2f10f6bf274bb51b96dd5337f01165b45 (diff) |
Prepend spl_ to all init/fini functions
This is a bit of cleanup I'd been meaning to get to for a while
to reduce the chance of a type conflict. Well that conflict
finally occurred with the kstat_init() function which conflicts
with a function in the 2.6.32-6-pve kernel.
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #56
Diffstat (limited to 'include/sys/tsd.h')
-rw-r--r-- | include/sys/tsd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sys/tsd.h b/include/sys/tsd.h index 56f3b4cd8..a31f60605 100644 --- a/include/sys/tsd.h +++ b/include/sys/tsd.h @@ -39,7 +39,7 @@ extern void tsd_create(uint_t *, dtor_func_t); extern void tsd_destroy(uint_t *); extern void tsd_exit(void); -int tsd_init(void); -void tsd_fini(void); +int spl_tsd_init(void); +void spl_tsd_fini(void); #endif /* _SPL_TSD_H */ |