blob: 6da69434d0506727e4f1fcff73e741dbf8a67b58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#ifndef __SYS_TYPES_H
#define __SYS_TYPES_H
typedef __INT64_TYPE__ blkcnt_t;
typedef __INT32_TYPE__ blksize_t;
typedef __INT64_TYPE__ clock_t;
typedef __INT32_TYPE__ clockid_t;
typedef __UINT64_TYPE__ dev_t;
typedef __UINT64_TYPE__ fsblkcnt_t;
typedef __UINT64_TYPE__ fsfilcnt_t;
typedef __UINT32_TYPE__ gid_t;
typedef __UINT32_TYPE__ id_t;
typedef __UINT64_TYPE__ ino_t;
typedef __INT32_TYPE__ key_t;
typedef __UINT32_TYPE__ mode_t;
typedef __UINT32_TYPE__ nlink_t;
typedef __INT64_TYPE__ off_t;
typedef __INT64_TYPE__ pid_t;
typedef __UINT32_TYPE__ reclen_t;
typedef __SIZE_TYPE__ size_t;
typedef __INT64_TYPE__ ssize_t;
typedef __INT64_TYPE__ suseconds_t;
typedef __INT64_TYPE__ time_t;
typedef void *timer_t;
typedef __UINT32_TYPE__ uid_t;
// TODO:
// pthread_attr_t
// pthread_barrier_t
// pthread_barrierattr_t
// pthread_cond_t
// pthread_condattr_t
// pthread_key_t
// pthread_mutex_t
// pthread_mutexattr_t
// pthread_once_t
// pthread_rwlock_t
// pthread_rwlockattr_t
// pthread_spinlock_t
// pthread_t
#endif
|