wangzhengquan
2021-02-01 fb3d4aaf08075f84ed7718d2b570e6ca9e8b4a70
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