/usr/include/infiniband/complib/cl_threadpool.h is in libopensm-dev 3.3.15-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 | /*
* Copyright (c) 2004-2007 Voltaire, Inc. All rights reserved.
* Copyright (c) 2002-2005 Mellanox Technologies LTD. All rights reserved.
* Copyright (c) 1996-2003 Intel Corporation. All rights reserved.
*
* This software is available to you under a choice of one of two
* licenses. You may choose to be licensed under the terms of the GNU
* General Public License (GPL) Version 2, available from the file
* COPYING in the main directory of this source tree, or the
* OpenIB.org BSD license below:
*
* Redistribution and use in source and binary forms, with or
* without modification, are permitted provided that the following
* conditions are met:
*
* - Redistributions of source code must retain the above
* copyright notice, this list of conditions and the following
* disclaimer.
*
* - Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
*/
/*
* Abstract:
* Declaration of thread pool.
*/
#ifndef _CL_THREAD_POOL_H_
#define _CL_THREAD_POOL_H_
#include <pthread.h>
#include <complib/cl_types.h>
#include <complib/cl_thread.h>
#ifdef __cplusplus
# define BEGIN_C_DECLS extern "C" {
# define END_C_DECLS }
#else /* !__cplusplus */
# define BEGIN_C_DECLS
# define END_C_DECLS
#endif /* __cplusplus */
BEGIN_C_DECLS
/****h* Component Library/Thread Pool
* NAME
* Thread Pool
*
* DESCRIPTION
* The Thread Pool manages a user specified number of threads.
*
* Each thread in the thread pool waits for a user initiated signal before
* invoking a user specified callback function. All threads in the thread
* pool invoke the same callback function.
*
* The thread pool functions operate on a cl_thread_pool_t structure which
* should be treated as opaque, and should be manipulated only through the
* provided functions.
*
* SEE ALSO
* Structures:
* cl_thread_pool_t
*
* Initialization:
* cl_thread_pool_construct, cl_thread_pool_init, cl_thread_pool_destroy
*
* Manipulation
* cl_thread_pool_signal
*********/
/****s* Component Library: Thread Pool/cl_thread_pool_t
* NAME
* cl_thread_pool_t
*
* DESCRIPTION
* Thread pool structure.
*
* The cl_thread_pool_t structure should be treated as opaque, and should be
* manipulated only through the provided functions.
*
* SYNOPSIS
*/
typedef struct _cl_thread_pool {
void (*pfn_callback) (void *);
void *context;
unsigned running_count;
unsigned events;
pthread_cond_t cond;
pthread_mutex_t mutex;
pthread_t *tid;
} cl_thread_pool_t;
/*
* FIELDS
* pfn_callback
* Callback function for the thread to invoke.
*
* context
* Context to pass to the thread callback function.
*
* running_count
* Number of threads running.
*
* events
* events counter
*
* mutex
* mutex for cond variable protection
*
* cond
* conditional variable to signal an event to thread
*
* tid
* array of allocated thread ids.
*
* SEE ALSO
* Thread Pool
*********/
/****f* Component Library: Thread Pool/cl_thread_pool_init
* NAME
* cl_thread_pool_init
*
* DESCRIPTION
* The cl_thread_pool_init function creates the threads to be
* managed by a thread pool.
*
* SYNOPSIS
*/
cl_status_t
cl_thread_pool_init(IN cl_thread_pool_t * const p_thread_pool,
IN unsigned count,
IN void (*pfn_callback) (void *),
IN void *context, IN const char *const name);
/*
* PARAMETERS
* p_thread_pool
* [in] Pointer to a thread pool structure to initialize.
*
* thread_count
* [in] Number of threads to be managed by the thread pool.
*
* pfn_callback
* [in] Address of a function to be invoked by a thread.
* See the cl_pfn_thread_callback_t function type definition for
* details about the callback function.
*
* context
* [in] Value to pass to the callback function.
*
* name
* [in] Name to associate with the threads. The name may be up to 16
* characters, including a terminating null character. All threads
* created in the pool have the same name.
*
* RETURN VALUES
* CL_SUCCESS if the thread pool creation succeeded.
*
* CL_INSUFFICIENT_MEMORY if there was not enough memory to inititalize
* the thread pool.
*
* CL_ERROR if the threads could not be created.
*
* NOTES
* cl_thread_pool_init creates and starts the specified number of threads.
* If thread_count is zero, the thread pool creates as many threads as there
* are processors in the system.
*
* SEE ALSO
* Thread Pool, cl_thread_pool_construct, cl_thread_pool_destroy,
* cl_thread_pool_signal, cl_pfn_thread_callback_t
*********/
/****f* Component Library: Thread Pool/cl_thread_pool_destroy
* NAME
* cl_thread_pool_destroy
*
* DESCRIPTION
* The cl_thread_pool_destroy function performs any necessary cleanup
* for a thread pool.
*
* SYNOPSIS
*/
void cl_thread_pool_destroy(IN cl_thread_pool_t * const p_thread_pool);
/*
* PARAMETERS
* p_thread_pool
* [in] Pointer to a thread pool structure to destroy.
*
* RETURN VALUE
* This function does not return a value.
*
* NOTES
* This function blocks until all threads exit, and must therefore not
* be called from any of the thread pool's threads. Because of its blocking
* nature, callers of cl_thread_pool_destroy must ensure that entering a wait
* state is valid from the calling thread context.
*
* This function should only be called after a call to
* cl_thread_pool_construct or cl_thread_pool_init.
*
* SEE ALSO
* Thread Pool, cl_thread_pool_construct, cl_thread_pool_init
*********/
/****f* Component Library: Thread Pool/cl_thread_pool_signal
* NAME
* cl_thread_pool_signal
*
* DESCRIPTION
* The cl_thread_pool_signal function signals a single thread of
* the thread pool to invoke the thread pool's callback function.
*
* SYNOPSIS
*/
cl_status_t cl_thread_pool_signal(IN cl_thread_pool_t * const p_thread_pool);
/*
* PARAMETERS
* p_thread_pool
* [in] Pointer to a thread pool structure to signal.
*
* RETURN VALUES
* CL_SUCCESS if the thread pool was successfully signalled.
*
* CL_ERROR otherwise.
*
* NOTES
* Each call to this function wakes up at most one waiting thread in
* the thread pool.
*
* If all threads are running, cl_thread_pool_signal has no effect.
*
* SEE ALSO
* Thread Pool
*********/
END_C_DECLS
#endif /* _CL_THREAD_POOL_H_ */
|