taskq_impl.h revision 5aeb94743e3be0c51e86f73096334611ae3a058e
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2010 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/*
* Copyright 2011 Nexenta Systems, Inc. All rights reserved.
*/
#ifndef _SYS_TASKQ_IMPL_H
#define _SYS_TASKQ_IMPL_H
#include <sys/inttypes.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct taskq_bucket taskq_bucket_t;
typedef struct taskq_ent {
struct taskq_ent *tqent_next;
struct taskq_ent *tqent_prev;
void *tqent_arg;
union {
} tqent_un;
} taskq_ent_t;
#define TQENT_FLAG_PREALLOC 0x1
/*
* Taskq Statistics fields are not protected by any locks.
*/
typedef struct tqstat {
} tqstat_t;
/*
* Per-CPU hash bucket manages taskq_bent_t structures using freelist.
*/
struct taskq_bucket {
};
/*
* Bucket flags.
*/
#define TQBUCKET_CLOSE 0x01
#define TQBUCKET_SUSPEND 0x02
/*
* taskq implementation flags: bit range 16-31
*/
struct taskq {
int tq_active;
int tq_nthreads;
int tq_nthreads_target;
int tq_nthreads_max;
int tq_threads_ncpus_pct;
int tq_nalloc;
int tq_minalloc;
int tq_maxalloc;
int tq_maxalloc_wait;
int tq_maxsize;
int tq_instance;
union {
} tq_thr;
int tq_cpupart; /* cpupart id bound to */
/*
* Statistics.
*/
int tq_maxtasks; /* Max number of tasks in the queue */
int tq_tcreates;
int tq_tdeaths;
};
/* Special form of taskq dispatch that uses preallocated entries. */
/* The MAX guarantees we have at least one thread */
#ifdef __cplusplus
}
#endif
#endif /* _SYS_TASKQ_IMPL_H */