wangzhengquan
2020-07-25 8ec1d776751f62c43335d36c3427dc1ab2d84a61
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef PCSEM_H
#define PCSEM_H  
 
#include "usg_common.h"
#include "usg_typedef.h"
 
namespace SemUtil {
 
    int get(key_t key, unsigned int value);
    int dec(int semId);
    int dec_nowait(int semId);
    int dec_timeout(const int semId, const struct timespec * timeout);
    int inc(int semId);
    void remove(int semid);
 
    void set(int semId, int val);
 
}
 
#endif