Changeset bb68433 in mainline for arch/ia32/src
- Timestamp:
- 2006-02-08T22:58:06Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7e4e532
- Parents:
- 85dc2e7
- Location:
- arch/ia32/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ia32/src/mm/frame.c
r85dc2e7 rbb68433 132 132 #endif 133 133 #endif 134 /* Merge all zones to 1 big zone */ 135 zone_merge_all(); 134 136 } 135 137 } -
arch/ia32/src/pm.c
r85dc2e7 rbb68433 191 191 } 192 192 else { 193 tss_p = (struct tss *) malloc(sizeof(struct tss) );193 tss_p = (struct tss *) malloc(sizeof(struct tss),FRAME_ATOMIC); 194 194 if (!tss_p) 195 195 panic("could not allocate TSS\n"); -
arch/ia32/src/smp/smp.c
r85dc2e7 rbb68433 139 139 * Prepare new GDT for CPU in question. 140 140 */ 141 if (!(gdt_new = (struct descriptor *) malloc(GDT_ITEMS*sizeof(struct descriptor) )))141 if (!(gdt_new = (struct descriptor *) malloc(GDT_ITEMS*sizeof(struct descriptor), FRAME_ATOMIC))) 142 142 panic("couldn't allocate memory for GDT\n"); 143 143
Note:
See TracChangeset
for help on using the changeset viewer.