]> git.proxmox.com Git - mirror_spl-debian.git/blobdiff - include/sys/thread.h
Add highbit func,
[mirror_spl-debian.git] / include / sys / thread.h
index d1009ab6d8c7713012f07dd930caa361b8830d2f..4532aee5bbbdf2e8adf4034d48a69816eccc1751 100644 (file)
@@ -31,14 +31,9 @@ extern "C" {
 #define thread_exit()                  __thread_exit()
 #define curthread                      get_current()
 
-/* We just need a valid type to pass around, it's unused */
-typedef struct proc_s {
-       int foo;
-} proc_t;
-
 extern kthread_t *__thread_create(caddr_t stk, size_t  stksize,
                             void (*proc)(void *), void *args,
-                            size_t len, proc_t *pp, int state,
+                            size_t len, int *pp, int state,
                             pri_t pri);
 extern void __thread_exit(void);