remove theme-specific names from RC.in files, substitute them during build
[ardour2.git] / libs / pbd / semutils.cc
blob9ac5f60d351561f405b9852926f541c1e9118d75
1 /*
2 Copyright (C) 2010 Paul Davis
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 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 General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 #include "pbd/semutils.h"
20 #include "pbd/failed_constructor.h"
22 using namespace PBD;
24 ProcessSemaphore::ProcessSemaphore (const char* name, int val)
26 #ifdef __APPLE__
27 if ((_sem = sem_open (name, O_CREAT, 0600, val)) == (sem_t*) SEM_FAILED) {
28 throw failed_constructor ();
31 /* this semaphore does not exist for IPC */
33 if (sem_unlink (name)) {
34 throw failed_constructor ();
37 #else
38 if (sem_init (&_sem, 0, val)) {
39 throw failed_constructor ();
41 #endif
44 ProcessSemaphore::~ProcessSemaphore ()
46 #ifdef __APPLE__
47 sem_close (ptr_to_sem());
48 #endif