]> git.proxmox.com Git - mirror_spl.git/blame - include/spl-types.h
Minor nit, SOLARIS should be SPL
[mirror_spl.git] / include / spl-types.h
CommitLineData
09b414e8 1#ifndef _SPL_TYPES_H
2#define _SPL_TYPES_H
f1ca4da6 3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
3d4ea0ce 8typedef enum { B_FALSE=0, B_TRUE=1 } boolean_t;
f1ca4da6 9typedef unsigned long uintptr_t;
10typedef unsigned long intptr_t;
11typedef unsigned long ulong_t;
12typedef unsigned int uint_t;
13typedef unsigned char uchar_t;
14typedef unsigned long long u_longlong_t;
15typedef unsigned long long u_offset_t;
16typedef unsigned long long rlim64_t;
17typedef long long longlong_t;
18typedef long long offset_t;
3d4ea0ce 19typedef struct task_struct kthread_t;
f1ca4da6 20typedef struct vmem { } vmem_t;
21typedef short pri_t;
22
23#ifdef __cplusplus
24}
25#endif
26
09b414e8 27#endif /* _SPL_TYPES_H */