2008-02-28 03:52:31 +03:00
|
|
|
#ifndef _SPL_THREAD_H
|
|
|
|
#define _SPL_THREAD_H
|
2008-02-26 23:36:04 +03:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2008-02-27 22:09:51 +03:00
|
|
|
#include <linux/module.h>
|
2008-02-26 23:36:04 +03:00
|
|
|
#include <linux/mm.h>
|
|
|
|
#include <linux/spinlock.h>
|
2008-03-01 03:45:59 +03:00
|
|
|
#include <sys/types.h>
|
2008-03-04 21:22:31 +03:00
|
|
|
#include <sys/sysmacros.h>
|
2008-02-26 23:36:04 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Thread interfaces
|
|
|
|
*/
|
|
|
|
#define TP_MAGIC 0x53535353
|
|
|
|
|
|
|
|
#define TS_SLEEP TASK_INTERRUPTIBLE
|
|
|
|
#define TS_RUN TASK_RUNNING
|
|
|
|
#define TS_ZOMB EXIT_ZOMBIE
|
|
|
|
#define TS_STOPPED TASK_STOPPED
|
|
|
|
#if 0
|
|
|
|
#define TS_FREE 0x00 /* No clean linux mapping */
|
|
|
|
#define TS_ONPROC 0x04 /* No clean linux mapping */
|
|
|
|
#define TS_WAIT 0x20 /* No clean linux mapping */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define thread_create(stk, stksize, func, arg, len, pp, state, pri) \
|
2008-03-08 03:58:32 +03:00
|
|
|
__thread_create(stk, stksize, (void (*)(void *))func, \
|
|
|
|
arg, len, pp, state, pri)
|
2008-02-26 23:36:04 +03:00
|
|
|
#define thread_exit() __thread_exit()
|
|
|
|
#define curthread get_current()
|
|
|
|
|
2008-02-27 22:09:51 +03:00
|
|
|
extern kthread_t *__thread_create(caddr_t stk, size_t stksize,
|
2008-03-08 03:58:32 +03:00
|
|
|
void (*func)(void *), void *args,
|
2008-03-07 02:12:55 +03:00
|
|
|
size_t len, int *pp, int state,
|
2008-02-26 23:36:04 +03:00
|
|
|
pri_t pri);
|
2008-02-27 22:09:51 +03:00
|
|
|
extern void __thread_exit(void);
|
2008-02-26 23:36:04 +03:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-02-28 03:52:31 +03:00
|
|
|
#endif /* _SPL_THREAD_H */
|
2008-02-26 23:36:04 +03:00
|
|
|
|