wangzhengquan
2021-02-08 bc2afe32e8db4318f2a2adea49d85b10d0d4cc97
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _FUTEXT_SEM_H_
#define _FUTEXT_SEM_H_  
#include "usg_common.h"
#include <sys/wait.h>
#include <sys/mman.h>
#include <sys/syscall.h>
#include <linux/futex.h>
#include <sys/time.h>
#include <sys/mman.h>
#include <sys/stat.h>        /* For mode constants */
#include <fcntl.h> 
int futex(int *uaddr, int futex_op, int val,
    const struct timespec *timeout, int *uaddr2, int val3);
 
#endif