Changeset 5110d0a in mainline for kernel/generic/include/proc/thread.h


Ignore:
Timestamp:
2023-02-07T16:02:50Z (2 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7c5320c
Parents:
8a55346
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2023-02-06 16:44:26)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2023-02-07 16:02:50)
Message:

Turn a bunch of macros into regular functions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/proc/thread.h

    r8a55346 r5110d0a  
    237237extern void thread_usleep(uint32_t);
    238238
    239 #define thread_join(t) \
    240         thread_join_timeout((t), SYNCH_NO_TIMEOUT, SYNCH_FLAGS_NONE)
    241 
     239extern errno_t thread_join(thread_t *);
    242240extern errno_t thread_join_timeout(thread_t *, uint32_t, unsigned int);
    243241extern void thread_detach(thread_t *);
Note: See TracChangeset for help on using the changeset viewer.