Changeset a2c58f6 in mainline for uspace/lib/libc/generic/thread.c


Ignore:
Timestamp:
2009-04-09T19:08:33Z (15 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
92fd52d7
Parents:
552823e
Message:

thread_exit() needs to be noreturn as well

File:
1 edited

Legend:

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

    r552823e ra2c58f6  
    131131{
    132132        __SYSCALL1(SYS_THREAD_EXIT, (sysarg_t) status);
     133        for (;;)
     134                ;
    133135}
    134136
     
    153155int thread_join(thread_id_t thread)
    154156{
     157        return 0;
    155158}
    156159
Note: See TracChangeset for help on using the changeset viewer.