mirror of git://git.musl-libc.org/musl
macro for pthread_equal
no sense bloating apps with a function call for an equality comparison...
This commit is contained in:
parent
ef9dd03534
commit
9205e48609
|
@ -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 *);
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include <pthread.h>
|
||||
|
||||
int pthread_equal(pthread_t a, pthread_t b)
|
||||
int (pthread_equal)(pthread_t a, pthread_t b)
|
||||
{
|
||||
return a==b;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue