Changeset 53ad43c in mainline for kernel/generic/include
- Timestamp:
- 2018-03-08T18:54:30Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5ef16903
- Parents:
- e0a4686
- Location:
- kernel/generic/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/config.h
re0a4686 r53ad43c 50 50 #define CONFIG_TASK_ARGUMENTS_BUFLEN 64 51 51 52 #ifndef __AS M__52 #ifndef __ASSEMBLER__ 53 53 54 54 #include <stdbool.h> … … 109 109 extern ballocs_t ballocs; 110 110 111 #endif /* __AS M__ */111 #endif /* __ASSEMBLER__ */ 112 112 113 113 #endif -
kernel/generic/include/macros.h
re0a4686 r53ad43c 36 36 #define KERN_MACROS_H_ 37 37 38 #ifndef __AS M__38 #ifndef __ASSEMBLER__ 39 39 40 40 #include <stdint.h> … … 98 98 } 99 99 100 #endif /* __AS M__ */100 #endif /* __ASSEMBLER__ */ 101 101 102 102 #define ispwr2(x) (((x) & ((x) - 1)) == 0) -
kernel/generic/include/mm/asid.h
re0a4686 r53ad43c 41 41 #define KERN_ASID_H_ 42 42 43 #ifndef __AS M__43 #ifndef __ASSEMBLER__ 44 44 45 45 #include <arch/mm/asid.h> … … 55 55 #define ASID_MAX ASID_MAX_ARCH 56 56 57 #ifndef __AS M__57 #ifndef __ASSEMBLER__ 58 58 59 59 #define ASIDS_ALLOCABLE ((ASID_MAX + 1) - ASID_START)
Note:
See TracChangeset
for help on using the changeset viewer.