Changeset 8e5e78f in mainline
- Timestamp:
- 2006-04-09T19:10:30Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- bafbb4b
- Parents:
- 33472fa
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ia64/src/ia64.c
r33472fa r8e5e78f 95 95 switch_to_userspace((__address) kernel_uarg->uspace_entry, 96 96 ((__address) kernel_uarg->uspace_stack)+PAGE_SIZE-ALIGN_UP(STACK_ITEM_SIZE, STACK_ALIGNMENT), 97 ( __address) kernel_uarg->uspace_stack,97 ((__address) kernel_uarg->uspace_stack)+PAGE_SIZE, 98 98 (__address) kernel_uarg->uspace_uarg, 99 99 psr.value, rsc.value); -
generic/src/proc/task.c
r33472fa r8e5e78f 42 42 #include <print.h> 43 43 #include <elf.h> 44 45 46 #define LOADED_PROG_STACK_PAGES_NO 2 44 47 45 48 SPINLOCK_INITIALIZE(tasks_lock); … … 140 143 * Create the data as_area. 141 144 */ 142 a = as_area_create(as, AS_AREA_READ | AS_AREA_WRITE, PAGE_SIZE, USTACK_ADDRESS);145 a = as_area_create(as, AS_AREA_READ | AS_AREA_WRITE, LOADED_PROG_STACK_PAGES_NO*PAGE_SIZE, USTACK_ADDRESS); 143 146 144 147 t = thread_create(uinit, kernel_uarg, task, 0, "uinit");
Note:
See TracChangeset
for help on using the changeset viewer.