Changes in kernel/generic/src/mm/as.c [826599a2:83b6ba9f] in mainline
- File:
-
- 1 edited
-
kernel/generic/src/mm/as.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/mm/as.c
r826599a2 r83b6ba9f 572 572 * @param attrs Attributes of the area. 573 573 * @param backend Address space area backend. NULL if no backend is used. 574 * @param backend_data NULL or a pointer to custom backend data.574 * @param backend_data NULL or a pointer to an array holding two void *. 575 575 * @param base Starting virtual address of the area. 576 576 * If set to -1, a suitable mappable area is found. … … 1725 1725 ASSERT(count); 1726 1726 1727 btree_node_t *leaf = NULL;1727 btree_node_t *leaf; 1728 1728 size_t pages = (size_t) btree_search(&area->used_space, page, &leaf); 1729 1729 if (pages) { … … 1733 1733 return false; 1734 1734 } 1735 1736 ASSERT(leaf != NULL);1737 1735 1738 1736 if (!leaf->keys) {
Note:
See TracChangeset
for help on using the changeset viewer.
