Changeset aca642c in mainline
- Timestamp:
- 2017-06-02T06:17:24Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- cbb89f2
- Parents:
- fb864d65
- Location:
- abi/include/abi
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
abi/include/abi/ddi/arg.h
rfb864d65 raca642c 36 36 #define ABI_DDI_ARG_H_ 37 37 38 #include <stdint.h> 39 38 40 #define DMAMEM_FLAGS_ANONYMOUS 0x01 39 41 -
abi/include/abi/ddi/irq.h
rfb864d65 raca642c 35 35 #ifndef ABI_DDI_IRQ_H_ 36 36 #define ABI_DDI_IRQ_H_ 37 38 #include <stdint.h> 37 39 38 40 typedef struct { -
abi/include/abi/fourcc.h
rfb864d65 raca642c 36 36 #define ABI_FOURCC_H_ 37 37 38 #include "../../../common.h"38 #include <stdint.h> 39 39 40 40 #define FOURCC(a, b, c, d) \ 41 ((( UINT32_T) (a)) | (((UINT32_T) (b)) << 8) | \42 ((( UINT32_T) (c)) << 16) | (((UINT32_T) (d)) << 24))41 (((uint32_t) (a)) | (((uint32_t) (b)) << 8) | \ 42 (((uint32_t) (c)) << 16) | (((uint32_t) (d)) << 24)) 43 43 44 44 #define CC_COMPACT(a) \ 45 (( UINT32_T) (a) & 0x7f)45 ((uint32_t) (a) & 0x7f) 46 46 47 47 #define FOURCC_COMPACT(a, b, c, d) \ -
abi/include/abi/proc/task.h
rfb864d65 raca642c 36 36 #define ABI_PROC_TASK_H_ 37 37 38 #include <stdint.h> 39 38 40 typedef uint64_t task_id_t; 39 41 -
abi/include/abi/proc/thread.h
rfb864d65 raca642c 36 36 #define ABI_PROC_THREAD_H_ 37 37 38 #include <stdint.h> 39 38 40 typedef uint64_t thread_id_t; 39 41 -
abi/include/abi/sysinfo.h
rfb864d65 raca642c 40 40 #include <abi/proc/task.h> 41 41 #include <abi/proc/thread.h> 42 #include <stdint.h> 42 43 43 44 /** Number of load components */
Note:
See TracChangeset
for help on using the changeset viewer.