Changeset 85147f3 in mainline
- Timestamp:
- 2013-09-10T17:55:33Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 07525cd
- Parents:
- b0c2075
- Location:
- kernel
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/mips32/include/arch/mm/page.h
rb0c2075 r85147f3 196 196 p->p = 1; 197 197 } 198 199 198 200 199 extern void page_arch_init(void); -
kernel/generic/include/adt/list.h
rb0c2075 r85147f3 186 186 * @return Head item of the list. 187 187 * @return NULL if the list is empty. 188 * 188 189 */ 189 190 static inline link_t *list_first(const list_t *list) … … 198 199 * @return Head item of the list. 199 200 * @return NULL if the list is empty. 201 * 200 202 */ 201 203 static inline link_t *list_last(list_t *list) -
kernel/generic/include/config.h
rb0c2075 r85147f3 94 94 /** Size of initial stack. */ 95 95 size_t stack_size; 96 96 97 97 bool identity_configured; 98 98 /** Base address of the kernel identity mapped memory. */ … … 100 100 /** Size of the kernel identity mapped memory. */ 101 101 size_t identity_size; 102 103 bool non_identity_configured; 104 102 103 bool non_identity_configured; 104 105 105 /** End of physical memory. */ 106 106 uint64_t physmem_end;
Note:
See TracChangeset
for help on using the changeset viewer.