Subversion Repositories HelenOS

Rev

Rev 2927 | Rev 3153 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2927 Rev 3149
Line 33... Line 33...
33
 */
33
 */
34
 
34
 
35
#ifndef KERN_TYPEDEFS_H_
35
#ifndef KERN_TYPEDEFS_H_
36
#define KERN_TYPEDEFS_H_
36
#define KERN_TYPEDEFS_H_
37
 
37
 
-
 
38
#define NULL 0
-
 
39
#define false 0
-
 
40
#define true 1
-
 
41
 
38
typedef void (* function)();
42
typedef void (* function)();
39
 
43
 
-
 
44
typedef uint8_t bool;
-
 
45
typedef uint64_t thread_id_t;
-
 
46
typedef uint64_t task_id_t;
-
 
47
typedef uint32_t context_id_t;
-
 
48
 
-
 
49
typedef int32_t inr_t;
-
 
50
typedef int32_t devno_t;
-
 
51
 
40
#endif
52
#endif
41
 
53
 
42
/** @}
54
/** @}
43
 */
55
 */