mirror of
https://github.com/fluencelabs/musl
synced 2025-06-22 03:02:07 +00:00
macro for pthread_equal
no sense bloating apps with a function call for an equality comparison...
This commit is contained in:
@ -80,7 +80,9 @@ int pthread_join(pthread_t, void **);
|
||||
__attribute__((const))
|
||||
#endif
|
||||
pthread_t pthread_self(void);
|
||||
|
||||
int pthread_equal(pthread_t, pthread_t);
|
||||
#define pthread_equal(x,y) ((x)==(y))
|
||||
|
||||
int pthread_setcancelstate(int, int *);
|
||||
int pthread_setcanceltype(int, int *);
|
||||
|
Reference in New Issue
Block a user