- Timestamp:
- 2006-06-16T12:07:17Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f5e4830
- Parents:
- 830ac99
- Location:
- libc/generic
- Files:
-
- 4 edited
-
ipc.c (modified) (2 diffs)
-
libadt/hash_table.c (modified) (1 diff)
-
psthread.c (modified) (1 diff)
-
thread.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libc/generic/ipc.c
r830ac99 r096ba7a 372 372 * 373 373 * - dispatch ASYNC reoutines in the background 374 * 374 375 * @param call Space where the message is stored 375 376 * @param usec Timeout in microseconds. … … 390 391 * 391 392 * - dispatch ASYNC reoutines in the background 393 * 392 394 * @param call Space where the message is stored 393 395 * @return Callid of the answer. -
libc/generic/libadt/hash_table.c
r830ac99 r096ba7a 80 80 * 81 81 * @param h Hash table. 82 * @param hey Array of all keys necessary to compute hash index.82 * @param key Array of all keys necessary to compute hash index. 83 83 * @param item Item to be inserted into the hash table. 84 84 */ -
libc/generic/psthread.c
r830ac99 r096ba7a 110 110 * held. 111 111 * 112 * @param tomanager If true, we are switching to next ready manager thread 113 * (if none is found, thread is exited) 114 * @param frommanager If true, we are switching from manager thread 112 * @param ctype Type of switch. 115 113 * @return 0 if there is no ready pseudo thread, 1 otherwise. 116 114 */ -
libc/generic/thread.c
r830ac99 r096ba7a 118 118 * @param name Symbolic name of the thread. 119 119 * 120 * @ paramTID of the new thread on success or -1 on failure.120 * @return TID of the new thread on success or -1 on failure. 121 121 */ 122 122 int thread_create(void (* function)(void *), void *arg, char *name) … … 146 146 /** Terminate current thread. 147 147 * 148 * @param stat Exit status. Currently not used.148 * @param status Exit status. Currently not used. 149 149 */ 150 150 void thread_exit(int status)
Note:
See TracChangeset
for help on using the changeset viewer.
