-
Notifications
You must be signed in to change notification settings - Fork 581
/
lock_alloc.h
109 lines (91 loc) · 2.85 KB
/
lock_alloc.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/*
* Copyright (C) 2001-2003 FhG Fokus
*
* This file is part of opensips, a free SIP server.
*
* opensips is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version
*
* opensips is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* History:
* --------
* 2003-03-06 created by andrei (contains parts of the original locking.h)
* 2003-03-17 fixed cast warning in shm_free (forced to void*) (andrei)
* 2004-07-28 s/lock_set_t/gen_lock_set_t/ because of a type conflict
* on darwin (andrei)
*/
/*!
* \file
* \brief OpenSIPS locking library
* \note WARNING: don't include this directly, use instead locking.h.
*/
/*!
* \page OpenSIPS locking library
* Implements simple locks and lock sets.
*
* simple locks:
* - gen_lock_t* lock_alloc(); - allocates a lock in shared mem.
* - void lock_dealloc(gen_lock_t* lock); - deallocates the lock's shared m.
*
* lock sets: [implemented only for FL & SYSV so far]
* - gen_lock_set_t* lock_set_alloc(no) - allocs a lock set in shm.
* - void lock_set_dealloc(gen_lock_set_t* s); - deallocs the lock set shm.
*
* \see locking.h
*/
#ifndef _lock_alloc_h
#define _lock_alloc_h
/*shm_{malloc, free}*/
#include "mem/mem.h"
#include "mem/shm_mem.h"
#if defined(FAST_LOCK) || defined(USE_PTHREAD_MUTEX) || defined(USE_POSIX_SEM) || defined(USE_UMUTEX)
/* simple locks*/
#define lock_alloc() shm_malloc(sizeof(gen_lock_t))
#define lock_dealloc(lock) shm_free((void*)lock)
/* lock sets */
inline static gen_lock_set_t* lock_set_alloc(int n)
{
struct {
gen_lock_set_t set;
gen_lock_t _locks[0];
} *ls;
ls=shm_malloc(sizeof(*ls)+n*sizeof(ls->_locks[0]));
if (ls==NULL){
LM_CRIT("no more shm memory\n");
}else{
ls->set.locks=ls->_locks;
ls->set.size=n;
}
return &(ls->set);
}
#define lock_set_dealloc(lock_set) shm_free((void*)lock_set)
#elif defined USE_SYSV_SEM
/*simple locks*/
#define lock_alloc() shm_malloc(sizeof(gen_lock_t))
#define lock_dealloc(lock) shm_free((void*)lock)
/* lock sets */
inline static gen_lock_set_t* lock_set_alloc(int n)
{
gen_lock_set_t* ls;
ls=(gen_lock_set_t*)shm_malloc(sizeof(gen_lock_set_t));
if (ls){
ls->size=n;
ls->semid=-1;
};
return ls;
}
#define lock_set_dealloc(lock_set) shm_free((void*)lock_set)
#else
#error "no locking method selected"
#endif
#endif