xref: /third_party/musl/src/thread/pthread_equal.c
  • Home
  • History
  • Annotate Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /third_party/musl/src/thread/
1570af302Sopenharmony_ci#include <pthread.h>
2570af302Sopenharmony_ci#include <threads.h>
3570af302Sopenharmony_ci
4570af302Sopenharmony_cistatic int __pthread_equal(pthread_t a, pthread_t b)
5570af302Sopenharmony_ci{
6570af302Sopenharmony_ci	return a==b;
7570af302Sopenharmony_ci}
8570af302Sopenharmony_ci
9570af302Sopenharmony_ciweak_alias(__pthread_equal, pthread_equal);
10570af302Sopenharmony_ciweak_alias(__pthread_equal, thrd_equal);
11

Indexes created Thu Nov 07 10:32:03 CST 2024