Changeset f30e6a0b in mainline
- Timestamp:
- 2006-04-12T11:59:03Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a1e17fc
- Parents:
- c9857c6
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
init/init.c
rc9857c6 rf30e6a0b 34 34 #include <ns.h> 35 35 #include <thread.h> 36 #include <task.h> 36 37 #include <psthread.h> 37 38 #include <futex.h> … … 289 290 // test_slam(); 290 291 292 printf("Userspace task, taskid=%llX\n", get_task_id()); 293 291 294 futex_initialize(&ftx, 1); 292 295 if (futex_down(&ftx) < 0) -
libc/Makefile
rc9857c6 rf30e6a0b 47 47 generic/string.c \ 48 48 generic/thread.c \ 49 generic/task.c \ 49 50 generic/futex.c \ 50 51 generic/io/io.c \ -
libc/arch/ia64/include/psthread.h
rc9857c6 rf30e6a0b 43 43 44 44 #define PSTHREAD_INITIAL_STACK_PAGES_NO 2 45 #define PSTHREAD_INITIAL_STACK_DIVISION 2 /*Stack is divided into two equal parts (for clasic stack and register stack)*/46 45 /* Stack is divided into two equal parts (for memory stack and register stack). */ 46 #define PSTHREAD_INITIAL_STACK_DIVISION 2 47 47 48 48 #ifdef context_set
Note:
See TracChangeset
for help on using the changeset viewer.