Changeset 1affcdf3 in mainline for kernel/generic/include/proc
- Timestamp:
- 2011-06-10T19:33:41Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1878386
- Parents:
- 13ecdac9 (diff), 79a141a (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/task.h
r13ecdac9 r1affcdf3 78 78 /** Unique identity of task. */ 79 79 task_id_t taskid; 80 /** Task security cont ext. */81 cont ext_id_t context;80 /** Task security container. */ 81 container_id_t container; 82 82 83 83 /** Number of references (i.e. threads). */ -
kernel/generic/include/proc/thread.h
r13ecdac9 r1affcdf3 49 49 #include <sysinfo/abi.h> 50 50 51 #define THREAD_STACK_SIZE STACK_SIZE52 51 #define THREAD_NAME_BUFLEN 20 53 52 … … 259 258 extern sysarg_t sys_thread_get_id(thread_id_t *); 260 259 extern sysarg_t sys_thread_usleep(uint32_t); 260 extern sysarg_t sys_thread_udelay(uint32_t); 261 261 262 262 #endif -
kernel/generic/include/proc/uarg.h
r13ecdac9 r1affcdf3 40 40 void *uspace_entry; 41 41 void *uspace_stack; 42 42 43 43 void (* uspace_thread_function)(); 44 44 void *uspace_thread_arg;
Note:
See TracChangeset
for help on using the changeset viewer.
