Use size of pointer as size of pthread_t in SIZEOF_PTHREAD_T (GH PR #48)

This commit is contained in:
Emil Rosenquist 2022-09-07 08:25:43 +02:00 committed by GitHub
parent 013bbe243d
commit f868420725
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,14 +2,12 @@
#undef SIZEOF_PTHREAD_T #undef SIZEOF_PTHREAD_T
#ifndef _WIN32 #ifndef _MSC_VER
# if defined(__APPLE__) # ifdef __SIZEOF_POINTER__
# ifdef __LP64__ # define SIZEOF_PTHREAD_T __SIZEOF_POINTER__
# define SIZEOF_PTHREAD_T 8 # endif
# else
# define SIZEOF_PTHREAD_T 4 # ifndef SIZEOF_PTHREAD_T
# endif # error unable to determine size of pthread_t
# else # endif
# define SIZEOF_PTHREAD_T 4
# endif
#endif #endif