Changeset b2c92f33 in mainline
- Timestamp:
- 2006-01-08T16:37:58Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 69a03b9
- Parents:
- f275cb3
- Location:
- arch
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/amd64/src/mm/page.c
rf275cb3 rb2c92f33 48 48 page_operations = &page_pt_operations; 49 49 50 dba = frame_alloc(FRAME_KA | FRAME_PANIC, ONE_FRAME );50 dba = frame_alloc(FRAME_KA | FRAME_PANIC, ONE_FRAME, NULL); 51 51 memsetb(dba, PAGE_SIZE, 0); 52 52 -
arch/ia32/src/mm/page.c
rf275cb3 rb2c92f33 53 53 page_operations = &page_pt_operations; 54 54 55 dba = frame_alloc(FRAME_KA | FRAME_PANIC, ONE_FRAME );55 dba = frame_alloc(FRAME_KA | FRAME_PANIC, ONE_FRAME, NULL); 56 56 memsetb(dba, PAGE_SIZE, 0); 57 57
Note:
See TracChangeset
for help on using the changeset viewer.