Blame complib/cl_threadpool.c

Packit 13e616
/*
Packit 13e616
 * Copyright (c) 2004-2007 Voltaire, Inc. All rights reserved.
Packit 13e616
 * Copyright (c) 2002-2005 Mellanox Technologies LTD. All rights reserved.
Packit 13e616
 * Copyright (c) 1996-2003 Intel Corporation. All rights reserved.
Packit 13e616
 *
Packit 13e616
 * This software is available to you under a choice of one of two
Packit 13e616
 * licenses.  You may choose to be licensed under the terms of the GNU
Packit 13e616
 * General Public License (GPL) Version 2, available from the file
Packit 13e616
 * COPYING in the main directory of this source tree, or the
Packit 13e616
 * OpenIB.org BSD license below:
Packit 13e616
 *
Packit 13e616
 *     Redistribution and use in source and binary forms, with or
Packit 13e616
 *     without modification, are permitted provided that the following
Packit 13e616
 *     conditions are met:
Packit 13e616
 *
Packit 13e616
 *      - Redistributions of source code must retain the above
Packit 13e616
 *        copyright notice, this list of conditions and the following
Packit 13e616
 *        disclaimer.
Packit 13e616
 *
Packit 13e616
 *      - Redistributions in binary form must reproduce the above
Packit 13e616
 *        copyright notice, this list of conditions and the following
Packit 13e616
 *        disclaimer in the documentation and/or other materials
Packit 13e616
 *        provided with the distribution.
Packit 13e616
 *
Packit 13e616
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
Packit 13e616
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
Packit 13e616
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
Packit 13e616
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
Packit 13e616
 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
Packit 13e616
 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
Packit 13e616
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
Packit 13e616
 * SOFTWARE.
Packit 13e616
 *
Packit 13e616
 */
Packit 13e616
Packit 13e616
/*
Packit 13e616
 * Abstract:
Packit 13e616
 *	Implementation of thread pool.
Packit 13e616
 *
Packit 13e616
 */
Packit 13e616
Packit 13e616
#if HAVE_CONFIG_H
Packit 13e616
#  include <config.h>
Packit 13e616
#endif				/* HAVE_CONFIG_H */
Packit 13e616
Packit 13e616
#include <stdlib.h>
Packit 13e616
#include <string.h>
Packit 13e616
#include <pthread.h>
Packit 13e616
#include <complib/cl_threadpool.h>
Packit 13e616
Packit 13e616
static void cleanup_mutex(void *arg)
Packit 13e616
{
Packit 13e616
	pthread_mutex_unlock(&((cl_thread_pool_t *) arg)->mutex);
Packit 13e616
}
Packit 13e616
Packit 13e616
static void *thread_pool_routine(void *context)
Packit 13e616
{
Packit 13e616
	cl_thread_pool_t *p_thread_pool = (cl_thread_pool_t *) context;
Packit 13e616
Packit 13e616
	do {
Packit 13e616
		pthread_mutex_lock(&p_thread_pool->mutex);
Packit 13e616
		pthread_cleanup_push(cleanup_mutex, p_thread_pool);
Packit 13e616
		while (!p_thread_pool->events)
Packit 13e616
			pthread_cond_wait(&p_thread_pool->cond,
Packit 13e616
					  &p_thread_pool->mutex);
Packit 13e616
		p_thread_pool->events--;
Packit 13e616
		pthread_cleanup_pop(1);
Packit 13e616
		/* The event has been signalled.  Invoke the callback. */
Packit 13e616
		(*p_thread_pool->pfn_callback) (p_thread_pool->context);
Packit 13e616
	} while (1);
Packit 13e616
Packit 13e616
	return NULL;
Packit 13e616
}
Packit 13e616
Packit 13e616
cl_status_t cl_thread_pool_init(IN cl_thread_pool_t * const p_thread_pool,
Packit 13e616
				IN unsigned count,
Packit 13e616
				IN void (*pfn_callback) (void *),
Packit 13e616
				IN void *context, IN const char *const name)
Packit 13e616
{
Packit 13e616
	int i;
Packit 13e616
Packit 13e616
	CL_ASSERT(p_thread_pool);
Packit 13e616
	CL_ASSERT(pfn_callback);
Packit 13e616
Packit 13e616
	memset(p_thread_pool, 0, sizeof(*p_thread_pool));
Packit 13e616
Packit 13e616
	if (!count)
Packit 13e616
		count = cl_proc_count();
Packit 13e616
Packit 13e616
	pthread_mutex_init(&p_thread_pool->mutex, NULL);
Packit 13e616
	pthread_cond_init(&p_thread_pool->cond, NULL);
Packit 13e616
Packit 13e616
	p_thread_pool->events = 0;
Packit 13e616
Packit 13e616
	p_thread_pool->pfn_callback = pfn_callback;
Packit 13e616
	p_thread_pool->context = context;
Packit 13e616
Packit 13e616
	p_thread_pool->tid = calloc(count, sizeof(*p_thread_pool->tid));
Packit 13e616
	if (!p_thread_pool->tid) {
Packit 13e616
		cl_thread_pool_destroy(p_thread_pool);
Packit 13e616
		return CL_INSUFFICIENT_MEMORY;
Packit 13e616
	}
Packit 13e616
Packit 13e616
	p_thread_pool->running_count = count;
Packit 13e616
Packit 13e616
	for (i = 0; i < count; i++) {
Packit 13e616
		if (pthread_create(&p_thread_pool->tid[i], NULL,
Packit 13e616
				   thread_pool_routine, p_thread_pool) != 0) {
Packit 13e616
			cl_thread_pool_destroy(p_thread_pool);
Packit 13e616
			return CL_INSUFFICIENT_RESOURCES;
Packit 13e616
		}
Packit 13e616
	}
Packit 13e616
Packit 13e616
	return (CL_SUCCESS);
Packit 13e616
}
Packit 13e616
Packit 13e616
void cl_thread_pool_destroy(IN cl_thread_pool_t * const p_thread_pool)
Packit 13e616
{
Packit 13e616
	int i;
Packit 13e616
Packit 13e616
	CL_ASSERT(p_thread_pool);
Packit 13e616
Packit 13e616
	for (i = 0; i < p_thread_pool->running_count; i++)
Packit 13e616
		if (p_thread_pool->tid[i])
Packit 13e616
			pthread_cancel(p_thread_pool->tid[i]);
Packit 13e616
Packit 13e616
	for (i = 0; i < p_thread_pool->running_count; i++)
Packit 13e616
		if (p_thread_pool->tid[i])
Packit 13e616
			pthread_join(p_thread_pool->tid[i], NULL);
Packit 13e616
Packit 13e616
	p_thread_pool->running_count = 0;
Packit 13e616
Packit 13e616
	free(p_thread_pool->tid);
Packit 13e616
Packit 13e616
	pthread_cond_destroy(&p_thread_pool->cond);
Packit 13e616
	pthread_mutex_destroy(&p_thread_pool->mutex);
Packit 13e616
Packit 13e616
	p_thread_pool->events = 0;
Packit 13e616
}
Packit 13e616
Packit 13e616
cl_status_t cl_thread_pool_signal(IN cl_thread_pool_t * const p_thread_pool)
Packit 13e616
{
Packit 13e616
	int ret;
Packit 13e616
	CL_ASSERT(p_thread_pool);
Packit 13e616
	pthread_mutex_lock(&p_thread_pool->mutex);
Packit 13e616
	p_thread_pool->events++;
Packit 13e616
	ret = pthread_cond_signal(&p_thread_pool->cond);
Packit 13e616
	pthread_mutex_unlock(&p_thread_pool->mutex);
Packit 13e616
	return ret;
Packit 13e616
}