File: prelude-thread.h

package info (click to toggle)
libprelude 0.9.18.1-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 17,480 kB
  • ctags: 11,663
  • sloc: ansic: 165,605; xml: 27,857; sh: 10,044; makefile: 413; awk: 341; yacc: 238; lex: 186; python: 9; perl: 2
file content (103 lines) | stat: -rw-r--r-- 2,569 bytes parent folder | download | duplicates (2)
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
/*****
*
* Copyright (C) 2005 PreludeIDS Technologies. All Rights Reserved.
* Author: Yoann Vandoorselaere <yoann.v@prelude-ids.com>
*
* This file is part of the Prelude library.
*
* This program 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, or (at your option)
* any later version.
*
* This program 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; see the file COPYING.  If not, write to
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
*
*****/

#ifndef _LIBPRELUDE_THREAD_H
#define _LIBPRELUDE_THREAD_H

#ifdef HAVE_CONFIG_H
# include "config.h"
#endif

#include <signal.h>
#include <pthread.h>
#include "prelude-inttypes.h"

#ifdef __cplusplus
 extern "C" {
#endif


int prelude_thread_atfork(void (*prepare)(void), void (*parent)(void), void (*child)(void));


/*
 * mutex
 */
int prelude_thread_mutex_lock(pthread_mutex_t *mutex);

int prelude_thread_mutex_unlock(pthread_mutex_t *mutex);

int prelude_thread_mutex_init(pthread_mutex_t *mutex, const pthread_mutexattr_t *attr);

int prelude_thread_mutex_destroy(pthread_mutex_t *mutex);


/*
 * condition.
 */
int prelude_thread_cond_init(pthread_cond_t *cond, pthread_condattr_t *attr);

int prelude_thread_cond_signal(pthread_cond_t *cond);

int prelude_thread_cond_broadcast(pthread_cond_t *cond);

int prelude_thread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex);

int prelude_thread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex, const struct timespec *abstime);

int prelude_thread_cond_destroy(pthread_cond_t *cond);

/*
 * condition attribute
 */
int prelude_thread_condattr_init(pthread_condattr_t *attr);


/*
 *
 */
int prelude_thread_sigmask(int how, const sigset_t *newmask, sigset_t *oldmask);

int prelude_thread_create(pthread_t *thread, pthread_attr_t *attr, void *(*start_routine)(void *), void *arg);

void prelude_thread_exit(void *retval);

int prelude_thread_join(pthread_t th, void **thread_return);


/*
 *
 */
prelude_bool_t _prelude_thread_in_use(void);

int _prelude_thread_set_error(const char *error);

const char *_prelude_thread_get_error(void);

void _prelude_thread_deinit(void);
         
#ifdef __cplusplus
 }
#endif

#endif