提交 56b784d6 编写于 作者: R Rich Felker

add to pthread.h: pthread_mutex_timedlock and sched.h, time.h

上级 5cbd76c6
......@@ -12,7 +12,8 @@ extern "C" {
#include <bits/alltypes.h>
struct sched_param;
#include <sched.h>
#include <time.h>
typedef int pthread_once_t, pthread_key_t, pthread_spinlock_t;
typedef int pthread_mutexattr_t, pthread_condattr_t, pthread_barrierattr_t;
......@@ -121,6 +122,7 @@ int pthread_mutex_init(pthread_mutex_t *, const pthread_mutexattr_t *);
int pthread_mutex_lock(pthread_mutex_t *);
int pthread_mutex_unlock(pthread_mutex_t *);
int pthread_mutex_trylock(pthread_mutex_t *);
int pthread_mutex_timedlock(pthread_mutex_t *, const struct timespec *);
int pthread_mutex_destroy(pthread_mutex_t *);
int pthread_cond_init(pthread_cond_t *, const pthread_condattr_t *);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册