Fix some bugs when testing opensds ansible
[stor4nfv.git] / src / ceph / src / test / system / cross_process_sem.h
1 // -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
2 // vim: ts=8 sw=2 smarttab
3 /*
4 * Ceph - scalable distributed file system
5 *
6 * Copyright (C) 2011 New Dream Network
7 *
8 * This is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License version 2.1, as published by the Free Software
11 * Foundation.  See file COPYING.
12 *
13 */
14
15 struct cross_process_sem_data_t;
16
17 class CrossProcessSem
18 {
19 public:
20   static int create(int initial_val, CrossProcessSem** ret);
21   ~CrossProcessSem();
22
23   /* Initialize the semaphore. Must be called before any operations */
24   int init();
25
26   /* Semaphore wait */
27   void wait();
28
29   /* Semaphore post */
30   void post();
31
32   /* Reinitialize the semaphore to the desired value.
33    * NOT thread-safe if it is in use at the time!
34    */ 
35   int reinit(int dval);
36
37 private:
38   explicit CrossProcessSem(struct cross_process_sem_data_t *data);
39   struct cross_process_sem_data_t *m_data;
40 };