Subversion Repositories HelenOS

Rev

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

Rev 2216 Rev 3070
Line 33... Line 33...
33
 */
33
 */
34
 
34
 
35
#ifndef KERN_ppc64_TYPES_H_
35
#ifndef KERN_ppc64_TYPES_H_
36
#define KERN_ppc64_TYPES_H_
36
#define KERN_ppc64_TYPES_H_
37
 
37
 
38
#define NULL 0
-
 
39
#define false 0
-
 
40
#define true 1
-
 
41
 
-
 
42
typedef signed char int8_t;
38
typedef signed char int8_t;
43
typedef signed short int16_t;
39
typedef signed short int16_t;
44
typedef signed int int32_t;
40
typedef signed int int32_t;
45
typedef signed long int64_t;
41
typedef signed long int64_t;
46
 
42
 
Line 59... Line 55...
59
typedef uint64_t ipl_t;
55
typedef uint64_t ipl_t;
60
 
56
 
61
typedef uint64_t unative_t;
57
typedef uint64_t unative_t;
62
typedef int64_t native_t;
58
typedef int64_t native_t;
63
 
59
 
64
typedef uint8_t bool;
-
 
65
typedef uint64_t thread_id_t;
-
 
66
typedef uint64_t task_id_t;
-
 
67
typedef uint32_t context_id_t;
-
 
68
 
-
 
69
typedef int32_t inr_t;
-
 
70
typedef int32_t devno_t;
-
 
71
 
-
 
72
/** Page Table Entry. */
60
/** Page Table Entry. */
73
typedef struct {
61
typedef struct {
74
    unsigned p : 1;       /**< Present bit. */
62
    unsigned p : 1;       /**< Present bit. */
75
    unsigned a : 1;       /**< Accessed bit. */
63
    unsigned a : 1;       /**< Accessed bit. */
76
    unsigned g : 1;       /**< Global bit. */
64
    unsigned g : 1;       /**< Global bit. */