Changeset 7bdcc45 in mainline for kernel/generic/include/proc
- Timestamp:
- 2010-12-16T16:38:49Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7837101
- Parents:
- 8e58f94 (diff), eb221e5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- kernel/generic/include/proc
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/proc/program.h
r8e58f94 r7bdcc45 59 59 extern void program_ready(program_t *); 60 60 61 extern unative_t sys_program_spawn_loader(char *, size_t);61 extern sysarg_t sys_program_spawn_loader(char *, size_t); 62 62 63 63 #endif -
kernel/generic/include/proc/task.h
r8e58f94 r7bdcc45 93 93 phone_t phones[IPC_MAX_PHONES]; 94 94 stats_ipc_t ipc_info; /**< IPC statistics */ 95 /**96 * Active asynchronous messages. It is used for limiting uspace to97 * certain extent.98 */99 atomic_t active_calls;100 95 /** List of synchronous answerboxes. */ 101 96 link_t sync_box_head; … … 150 145 #endif 151 146 152 extern unative_t sys_task_get_id(task_id_t *); 153 extern unative_t sys_task_set_name(const char *, size_t); 147 #ifdef __32_BITS__ 148 extern sysarg_t sys_task_get_id(sysarg64_t *); 149 #endif 150 151 #ifdef __64_BITS__ 152 extern sysarg_t sys_task_get_id(void); 153 #endif 154 155 extern sysarg_t sys_task_set_name(const char *, size_t); 154 156 155 157 #endif -
kernel/generic/include/proc/thread.h
r8e58f94 r7bdcc45 241 241 242 242 /* Thread syscall prototypes. */ 243 extern unative_t sys_thread_create(uspace_arg_t *, char *, size_t,243 extern sysarg_t sys_thread_create(uspace_arg_t *, char *, size_t, 244 244 thread_id_t *); 245 extern unative_t sys_thread_exit(int);246 extern unative_t sys_thread_get_id(thread_id_t *);247 extern unative_t sys_thread_usleep(uint32_t);245 extern sysarg_t sys_thread_exit(int); 246 extern sysarg_t sys_thread_get_id(thread_id_t *); 247 extern sysarg_t sys_thread_usleep(uint32_t); 248 248 249 249 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
