Changeset 91a8f83 in mainline for kernel/generic/src/main/main.c
- Timestamp:
- 2018-10-31T18:15:56Z (6 years ago)
- Children:
- 071cb36
- Parents:
- 482f968
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/main/main.c
r482f968 r91a8f83 213 213 { 214 214 /* Keep this the first thing. */ 215 the_initialize(THE);215 current_initialize(CURRENT); 216 216 217 217 version_print(); … … 342 342 343 343 /* 344 * The THEstructure is well defined because ctx.sp is used as stack.345 */ 346 the_initialize(THE);344 * The CURRENT structure is well defined because ctx.sp is used as stack. 345 */ 346 current_initialize(CURRENT); 347 347 348 348 ARCH_OP(pre_mm_init); … … 356 356 ARCH_OP(post_cpu_init); 357 357 358 the_copy(THE, (the_t *) CPU->stack);358 current_copy(CURRENT, (current_t *) CPU->stack); 359 359 360 360 /*
Note:
See TracChangeset
for help on using the changeset viewer.