Changeset 201abde in mainline for kernel/generic/include
- Timestamp:
- 2007-04-07T20:06:52Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7e58979
- Parents:
- 6adbe3c2
- Location:
- kernel/generic/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/interrupt.h
r6adbe3c2 r201abde 49 49 { \ 50 50 if (istate_from_uspace(istate)) { \ 51 klog_printf("Task %ll dkilled due to an exception at %p.", TASK->taskid, istate_get_pc(istate)); \51 klog_printf("Task %llu killed due to an exception at %p.", TASK->taskid, istate_get_pc(istate)); \ 52 52 klog_printf(" " cmd, ##__VA_ARGS__); \ 53 53 task_kill(TASK->taskid); \ -
kernel/generic/include/proc/task.h
r6adbe3c2 r201abde 91 91 * certain extent. 92 92 */ 93 atomic_t active_calls; 93 atomic_t active_calls; 94 94 95 95 /** Architecture specific task data. */ 96 task_arch_t arch; 96 task_arch_t arch; 97 97 98 98 /** -
kernel/generic/include/proc/thread.h
r6adbe3c2 r201abde 194 194 int priority; 195 195 /** Thread ID. */ 196 uint32_t tid;196 thread_id_t tid; 197 197 198 198 /** Architecture-specific data. */ … … 249 249 250 250 /* Thread syscall prototypes. */ 251 unative_t sys_thread_create(uspace_arg_t *uspace_uarg, char *uspace_name);252 unative_t sys_thread_exit(int uspace_status);253 unative_t sys_thread_get_id(void);251 extern unative_t sys_thread_create(uspace_arg_t *uspace_uarg, char *uspace_name, thread_id_t *uspace_thread_id); 252 extern unative_t sys_thread_exit(int uspace_status); 253 extern unative_t sys_thread_get_id(thread_id_t *uspace_thread_id); 254 254 255 255 #endif
Note:
See TracChangeset
for help on using the changeset viewer.