Changeset c621f4aa in mainline for kernel/generic/include/typedefs.h
- Timestamp:
- 2010-07-25T10:11:13Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 377cce8
- Parents:
- 24a2517 (diff), a2da43c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
kernel/generic/include/typedefs.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/typedefs.h
r24a2517 rc621f4aa 36 36 #define KERN_TYPEDEFS_H_ 37 37 38 #include <stdint.h> 39 #include <arch/common.h> 38 40 #include <arch/types.h> 39 41 40 #define NULL 0 41 #define false 0 42 #define true 1 42 #define NULL 0 43 44 #define false 0 45 #define true 1 46 47 typedef struct { 48 uint64_t lo; 49 int64_t hi; 50 } int128_t; 51 52 typedef struct { 53 uint64_t lo; 54 uint64_t hi; 55 } uint128_t; 56 57 typedef struct { 58 volatile atomic_count_t count; 59 } atomic_t; 43 60 44 61 typedef void (* function)();
Note:
See TracChangeset
for help on using the changeset viewer.
