Rudiments
semaphoreset.h
1// Copyright (c) 1999-2018 David Muse
2// See the COPYING file for more information.
3
5 semaphoreset &operator=(semaphoreset &s) { return *this; };
6
7 private:
8 void createOperations();
9
10 int32_t semGet(key_t key, int32_t nsems,
11 int32_t semflg, const int32_t *values);
12 int32_t semControl(semaphoresetprivate *pvt, int32_t semnum,
13 int32_t cmd, semun *semctlun);
14 bool semTimedOp(struct sembuf *sops,
15 int32_t seconds,
16 int32_t nanoseconds);
17 bool semOp(struct sembuf *sops);
18
19 bool forceRemove();
20
Definition avltree.h:11
Definition semaphoreset.h:44