libevent
thread.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2008-2012 Niels Provos and Nick Mathewson
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution.
12  * 3. The name of the author may not be used to endorse or promote products
13  * derived from this software without specific prior written permission.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  */
26 #ifndef EVENT2_THREAD_H_INCLUDED_
27 #define EVENT2_THREAD_H_INCLUDED_
28 
49 #include <event2/visibility.h>
50 
51 #ifdef __cplusplus
52 extern "C" {
53 #endif
54 
55 #include <event2/event-config.h>
56 
64 #define EVTHREAD_WRITE 0x04
65 
67 #define EVTHREAD_READ 0x08
68 
71 #define EVTHREAD_TRY 0x10
72 
74 #if !defined(EVENT__DISABLE_THREAD_SUPPORT) || defined(EVENT_IN_DOXYGEN_)
75 
76 #define EVTHREAD_LOCK_API_VERSION 1
77 
85 #define EVTHREAD_LOCKTYPE_RECURSIVE 1
86 /* A read-write lock is one that allows multiple simultaneous readers, but
87  * where any one writer excludes all other writers and readers. */
88 #define EVTHREAD_LOCKTYPE_READWRITE 2
89 
109  void *(*alloc)(unsigned locktype);
112  void (*free)(void *lock, unsigned locktype);
115  int (*lock)(unsigned mode, void *lock);
118  int (*unlock)(unsigned mode, void *lock);
119 };
120 
129 EVENT2_EXPORT_SYMBOL
131 
132 #define EVTHREAD_CONDITION_API_VERSION 1
133 
134 struct timeval;
135 
148  void *(*alloc_condition)(unsigned condtype);
150  void (*free_condition)(void *cond);
157  int (*signal_condition)(void *cond, int broadcast);
168  int (*wait_condition)(void *cond, void *lock,
169  const struct timeval *timeout);
170 };
171 
180 EVENT2_EXPORT_SYMBOL
182  const struct evthread_condition_callbacks *);
183 
191 EVENT2_EXPORT_SYMBOL
193  unsigned long (*id_fn)(void));
194 
195 #if (defined(_WIN32) && !defined(EVENT__DISABLE_THREAD_SUPPORT)) || defined(EVENT_IN_DOXYGEN_)
196 
200 EVENT2_EXPORT_SYMBOL
205 #define EVTHREAD_USE_WINDOWS_THREADS_IMPLEMENTED 1
206 #endif
207 
208 #if defined(EVENT__HAVE_PTHREADS) || defined(EVENT_IN_DOXYGEN_)
209 
214 EVENT2_EXPORT_SYMBOL
215 int evthread_use_pthreads(void);
217 #define EVTHREAD_USE_PTHREADS_IMPLEMENTED 1
218 
219 #endif
220 
227 EVENT2_EXPORT_SYMBOL
229 
230 /* Old (misspelled) version: This is deprecated; use
231  * evthread_enable_log_debugging instead. */
232 EVENT2_EXPORT_SYMBOL
233 void evthread_enable_lock_debuging(void);
234 
235 #endif /* EVENT__DISABLE_THREAD_SUPPORT */
236 
237 struct event_base;
246 EVENT2_EXPORT_SYMBOL
247 int evthread_make_base_notifiable(struct event_base *base);
248 
249 #ifdef __cplusplus
250 }
251 #endif
252 
253 #endif /* EVENT2_THREAD_H_INCLUDED_ */
EVENT2_EXPORT_SYMBOL void evthread_set_id_callback(unsigned long(*id_fn)(void))
Sets the function for determining the thread id.
This structure describes the interface a threading library uses for condition variables.
Definition: thread.h:140
EVENT2_EXPORT_SYMBOL int evthread_set_lock_callbacks(const struct evthread_lock_callbacks *)
Sets a group of functions that Libevent should use for locking.
EVENT2_EXPORT_SYMBOL void evthread_enable_lock_debugging(void)
Enable debugging wrappers around the current lock callbacks.
int(* lock)(unsigned mode, void *lock)
Acquire an already-allocated lock at &#39;lock&#39; with mode &#39;mode&#39;.
Definition: thread.h:115
int lock_api_version
The current version of the locking API.
Definition: thread.h:98
int condition_api_version
The current version of the conditions API.
Definition: thread.h:143
EVENT2_EXPORT_SYMBOL int evthread_make_base_notifiable(struct event_base *base)
Make sure it&#39;s safe to tell an event base to wake up from another thread or a signal handler...
void(* free)(void *lock, unsigned locktype)
Funtion to release all storage held in &#39;lock&#39;, which was created with type &#39;locktype&#39;.
Definition: thread.h:112
EVENT2_EXPORT_SYMBOL int evthread_use_pthreads(void)
Sets up Libevent for use with Pthreads locking and thread ID functions.
EVENT2_EXPORT_SYMBOL int evthread_set_condition_callbacks(const struct evthread_condition_callbacks *)
Sets a group of functions that Libevent should use for condition variables.
int(* unlock)(unsigned mode, void *lock)
Release a lock at &#39;lock&#39; using mode &#39;mode&#39;.
Definition: thread.h:118
This structure describes the interface a threading library uses for locking.
Definition: thread.h:95
unsigned supported_locktypes
Which kinds of locks does this version of the locking API support? A bitfield of EVTHREAD_LOCKTYPE_RE...
Definition: thread.h:106
Structure to hold information and state for a Libevent dispatch loop.
Definition: event.h:217
EVENT2_EXPORT_SYMBOL int evthread_use_windows_threads(void)
Sets up Libevent for use with Windows builtin locking and thread ID functions.