Changeset d8431986 in mainline for kernel/generic/include/proc/thread.h
- Timestamp:
- 2007-05-31T21:25:54Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7f043c0
- Parents:
- e8a0b90
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/proc/thread.h
re8a0b90 rd8431986 64 64 /** Thread executes in userspace. */ 65 65 #define THREAD_FLAG_USPACE (1 << 2) 66 /** Thread will be attached by the caller. */ 67 #define THREAD_FLAG_NOATTACH (1 << 3) 66 68 67 69 /** Thread states. */ … … 221 223 extern thread_t *thread_create(void (* func)(void *), void *arg, task_t *task, 222 224 int flags, char *name, bool uncounted); 225 extern void thread_attach(thread_t *t, task_t *task); 223 226 extern void thread_ready(thread_t *t); 224 227 extern void thread_exit(void) __attribute__((noreturn));
Note:
See TracChangeset
for help on using the changeset viewer.