1 #ifndef __BIONIC_COMPAT_H 2 #define __BIONIC_COMPAT_H 3 4 #define _GNU_SOURCE 5 #include <sys/types.h> 6 pthread_cancel(pthread_t thread)7static inline int pthread_cancel(pthread_t thread) { return 0; } 8 9 #endif /* __BIONIC_COMPAT_H */ 10
1 #ifndef __BIONIC_COMPAT_H 2 #define __BIONIC_COMPAT_H 3 4 #define _GNU_SOURCE 5 #include <sys/types.h> 6 pthread_cancel(pthread_t thread)7static inline int pthread_cancel(pthread_t thread) { return 0; } 8 9 #endif /* __BIONIC_COMPAT_H */ 10