2008-02-27 22:09:51 +03:00
|
|
|
#ifndef _SOLARIS_THREAD_H
|
|
|
|
#define _SOLARIS_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-02-28 03:48:31 +03:00
|
|
|
#include "spl-types.h"
|
|
|
|
#include "spl-generic.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) \
|
|
|
|
__thread_create(stk, stksize, func, arg, len, pp, state, pri)
|
|
|
|
#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;
|
|
|
|
|
2008-02-27 22:09:51 +03:00
|
|
|
extern kthread_t *__thread_create(caddr_t stk, size_t stksize,
|
2008-02-26 23:36:04 +03:00
|
|
|
void (*proc)(void *), void *args,
|
|
|
|
size_t len, proc_t *pp, int state,
|
|
|
|
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-27 22:09:51 +03:00
|
|
|
#endif /* _SOLARIS_THREAD_H */
|
2008-02-26 23:36:04 +03:00
|
|
|
|