nemihome commented on issue #2083:
URL:
https://github.com/apache/incubator-pagespeed-mod/issues/2083#issuecomment-933729910
Hi, ok, the error message sounds like it is included in pagespeed.so. So
what's the problem? Is pagespeed.so using something which is depreciated or is
this a bug in the new pthread.h version?
Ubuntu 21.10 (relevant part):
```
extern int pthread_mutex_consistent (pthread_mutex_t *__mutex)
__THROW __nonnull ((1));
# ifdef __USE_GNU
# ifdef __REDIRECT_NTH
extern int __REDIRECT_NTH (pthread_mutex_consistent_np, (pthread_mutex_t *),
pthread_mutex_consistent) __nonnull ((1))
__attribute_deprecated_msg__ ("\
pthread_mutex_consistent_np is deprecated, use pthread_mutex_consistent");
# else
# define pthread_mutex_consistent_np pthread_mutex_consistent
# endif
# endif
#endif
```
Ubuntu 20.04:
```
/* Declare the state protected by MUTEX as consistent. */
extern int pthread_mutex_consistent (pthread_mutex_t *__mutex)
__THROW __nonnull ((1));
# ifdef __USE_GNU
extern int pthread_mutex_consistent_np (pthread_mutex_t *__mutex)
__THROW __nonnull ((1));
# endif
#endif
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]