Better isolation of server and clients system resources to allow starting the server...
[jack2.git] / posix / JackProcessSync.h
blobe689831b76f8829bfe0b09f0db10ab39ddd754e4
1 /*
2 Copyright (C) 2004-2008 Grame
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as published by
6 the Free Software Foundation; either version 2.1 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 #ifndef __JackProcessSync__
21 #define __JackProcessSync__
23 #include "JackPlatformPlug.h"
24 #include <pthread.h>
25 #include <sys/time.h>
26 #include <unistd.h>
28 namespace Jack
31 /*!
32 \brief A synchronization primitive built using a condition variable.
35 class JackProcessSync
38 private:
40 pthread_mutex_t fLock; // Mutex
41 pthread_cond_t fCond; // Condition variable
43 public:
45 JackProcessSync()
47 pthread_mutex_init(&fLock, NULL);
48 pthread_cond_init(&fCond, NULL);
51 ~JackProcessSync()
53 pthread_mutex_destroy(&fLock);
54 pthread_cond_destroy(&fCond);
57 bool Allocate(const char* name)
59 return true;
62 bool Connect(const char* name)
64 return true;
67 void Destroy()
70 bool TimedWait(long usec);
72 void Wait();
74 void Signal()
76 pthread_mutex_lock(&fLock);
77 pthread_cond_signal(&fCond);
78 pthread_mutex_unlock(&fLock);
81 void SignalAll()
83 //pthread_mutex_lock(&fLock);
84 pthread_cond_broadcast(&fCond);
85 //pthread_mutex_unlock(&fLock);
90 /*!
91 \brief A synchronization primitive built using an inter-process synchronization object.
94 class JackInterProcessSync
97 private:
99 JackSynchro* fSynchro;
101 public:
103 JackInterProcessSync(JackSynchro* synchro): fSynchro(synchro)
105 ~JackInterProcessSync()
107 delete fSynchro;
110 bool Allocate(const char* name)
112 return fSynchro->Allocate(name, "", 0);
115 void Destroy()
117 fSynchro->Destroy();
120 bool Connect(const char* name)
122 return fSynchro->Connect(name, "");
125 bool TimedWait(long usec);
127 void Wait()
129 fSynchro->Wait();
132 void SignalAll()
134 fSynchro->SignalAll();
139 } // end of namespace
141 #endif