Changeset dd655970 in mainline for uspace/libc/generic/thread.c


Ignore:
Timestamp:
2007-04-06T14:01:46Z (18 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
69e9dd2
Parents:
3ce7f082
Message:

new user space testing framework (unfinished)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/libc/generic/thread.c

    r3ce7f082 rdd655970  
    161161}
    162162
     163/** Detach thread.
     164 *
     165 * Currently not implemented.
     166 *
     167 * @param thread TID.
     168 */
     169void thread_detach(int thread)
     170{
     171}
     172
     173/** Join thread.
     174 *
     175 * Currently not implemented.
     176 *
     177 * @param thread TID.
     178 *
     179 * @return Thread exit status.
     180 */
     181int thread_join(int thread)
     182{
     183}
     184
     185/** Get current thread ID.
     186 *
     187 * @return Current thread ID.
     188 */
     189int thread_get_id(void)
     190{
     191        return __SYSCALL0(SYS_THREAD_GET_ID);
     192}
     193
    163194/** @}
    164195 */
Note: See TracChangeset for help on using the changeset viewer.