blob: 036d4abfebb8495499c0718485626ef3a99724cc (
plain)
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
|
/*
* Copyright (C) 2012-2013 Red Hat, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* Author: Robin Hack <rhack@redhat.com>
*/
#ifndef _LOCK_H
#define _LOCK_H
#include <pthread.h>
#include <glib.h>
/* Global */
#define USERNAME_LEN_MAX 33
typedef struct lock {
char id [USERNAME_LEN_MAX];
pthread_mutex_t mutex;
unsigned int instances;
} lock_t;
typedef struct lock_pool {
GHashTable *hash_table;
pthread_mutex_t csec;
} lock_pool_t;
typedef struct lock_pools {
lock_pool_t user_pool;
lock_pool_t group_pool;
int initialized;
pthread_mutex_t csec;
} lock_pools_t;
int init_lock_pools (void) __attribute__((warn_unused_result));
void destroy_lock_pools (void);
int get_user_lock (const char *const username) __attribute__((nonnull));
int get_group_lock (const char *const groupname) __attribute__((nonnull));
int release_user_lock (const char *const username) __attribute__((nonnull));
int release_group_lock (const char *const username) __attribute__((nonnull));
#endif /* _LOCK_H */
|