]> git.proxmox.com Git - mirror_spl-debian.git/blame_incremental - include/sys/types.h
Resolve incomplete type when building against 2.6.26
[mirror_spl-debian.git] / include / sys / types.h
... / ...
CommitLineData
1#ifndef _SPL_TYPES_H
2#define _SPL_TYPES_H
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8#include <linux/types.h>
9#include <sys/sysmacros.h>
10#include "spl_config.h"
11
12#ifndef HAVE_UINTPTR_T
13typedef unsigned long uintptr_t;
14#endif
15
16typedef enum { B_FALSE=0, B_TRUE=1 } boolean_t;
17typedef unsigned long intptr_t;
18typedef unsigned long ulong_t;
19typedef unsigned int uint_t;
20typedef unsigned char uchar_t;
21typedef unsigned long long u_longlong_t;
22typedef unsigned long long u_offset_t;
23typedef unsigned long long rlim64_t;
24typedef long long longlong_t;
25typedef long long offset_t;
26typedef struct task_struct kthread_t;
27typedef struct vmem { } vmem_t;
28typedef short pri_t;
29typedef struct timespec timestruc_t; /* definition per SVr4 */
30typedef struct timespec timespec_t;
31typedef longlong_t hrtime_t;
32typedef unsigned short ushort_t;
33typedef u_longlong_t len_t;
34typedef longlong_t diskaddr_t;
35typedef ushort_t o_mode_t;
36typedef uint_t major_t;
37typedef uint_t minor_t;
38
39#endif /* _SPL_TYPES_H */