Changeset a2c58f6 in mainline for uspace/lib/libc/include/thread.h


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/include/thread.h

    r552823e ra2c58f6  
    4646
    4747extern int thread_create(void (*)(void *), void *, char *, thread_id_t *);
    48 extern void thread_exit(int);
     48extern void thread_exit(int) __attribute__ ((noreturn));
    4949extern void thread_detach(thread_id_t);
    5050extern int thread_join(thread_id_t);
Note: See TracChangeset for help on using the changeset viewer.