Changeset a000878c in mainline for kernel/generic/src/proc
- Timestamp:
- 2010-02-25T19:11:25Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 958de16
- Parents:
- a634485
- Location:
- kernel/generic/src/proc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/proc/task.c
ra634485 ra000878c 171 171 * 172 172 */ 173 task_t *task_create(as_t *as, c har *name)173 task_t *task_create(as_t *as, const char *name) 174 174 { 175 175 ipl_t ipl; -
kernel/generic/src/proc/thread.c
ra634485 ra000878c 76 76 77 77 /** Thread states */ 78 c har *thread_states[] = {78 const char *thread_states[] = { 79 79 "Invalid", 80 80 "Running", … … 288 288 */ 289 289 thread_t *thread_create(void (* func)(void *), void *arg, task_t *task, 290 int flags, c har *name, bool uncounted)290 int flags, const char *name, bool uncounted) 291 291 { 292 292 thread_t *t;
Note:
See TracChangeset
for help on using the changeset viewer.