2019-03-07 23:09:56 +03:00
|
|
|
/*
|
|
|
|
* Copyright 2019 Haiku, Inc. All Rights Reserved.
|
2019-08-31 01:16:02 +03:00
|
|
|
* Distributed under the terms of the MIT License.
|
2019-03-07 23:09:56 +03:00
|
|
|
*/
|
|
|
|
#ifndef _GNU_PTHREAD_H_
|
|
|
|
#define _GNU_PTHREAD_H_
|
|
|
|
|
|
|
|
|
|
|
|
#include_next <pthread.h>
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef _GNU_SOURCE
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
extern int pthread_getattr_np(pthread_t thread, pthread_attr_t* attr);
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* _GNU_PTHREAD_H_ */
|
|
|
|
|