1*9e39c5baSBill Taylor /*
2*9e39c5baSBill Taylor  * CDDL HEADER START
3*9e39c5baSBill Taylor  *
4*9e39c5baSBill Taylor  * The contents of this file are subject to the terms of the
5*9e39c5baSBill Taylor  * Common Development and Distribution License (the "License").
6*9e39c5baSBill Taylor  * You may not use this file except in compliance with the License.
7*9e39c5baSBill Taylor  *
8*9e39c5baSBill Taylor  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*9e39c5baSBill Taylor  * or http://www.opensolaris.org/os/licensing.
10*9e39c5baSBill Taylor  * See the License for the specific language governing permissions
11*9e39c5baSBill Taylor  * and limitations under the License.
12*9e39c5baSBill Taylor  *
13*9e39c5baSBill Taylor  * When distributing Covered Code, include this CDDL HEADER in each
14*9e39c5baSBill Taylor  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*9e39c5baSBill Taylor  * If applicable, add the following below this CDDL HEADER, with the
16*9e39c5baSBill Taylor  * fields enclosed by brackets "[]" replaced with your own identifying
17*9e39c5baSBill Taylor  * information: Portions Copyright [yyyy] [name of copyright owner]
18*9e39c5baSBill Taylor  *
19*9e39c5baSBill Taylor  * CDDL HEADER END
20*9e39c5baSBill Taylor  */
21*9e39c5baSBill Taylor 
22*9e39c5baSBill Taylor /*
23*9e39c5baSBill Taylor  * Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
24*9e39c5baSBill Taylor  * Use is subject to license terms.
25*9e39c5baSBill Taylor  */
26*9e39c5baSBill Taylor 
27*9e39c5baSBill Taylor /*
28*9e39c5baSBill Taylor  *
29*9e39c5baSBill Taylor  * HEADER: dapl_srq_util.h
30*9e39c5baSBill Taylor  *
31*9e39c5baSBill Taylor  * PURPOSE: Utility defs & routines for the SRQ data structure
32*9e39c5baSBill Taylor  *
33*9e39c5baSBill Taylor  */
34*9e39c5baSBill Taylor 
35*9e39c5baSBill Taylor #ifndef _DAPL_SRQ_UTIL_H_
36*9e39c5baSBill Taylor #define	_DAPL_SRQ_UTIL_H_
37*9e39c5baSBill Taylor 
38*9e39c5baSBill Taylor #ifdef __cplusplus
39*9e39c5baSBill Taylor extern "C" {
40*9e39c5baSBill Taylor #endif
41*9e39c5baSBill Taylor 
42*9e39c5baSBill Taylor extern DAPL_SRQ *
43*9e39c5baSBill Taylor dapl_srq_alloc(IN DAPL_IA *ia_ptr, IN const DAT_SRQ_ATTR *srq_attr);
44*9e39c5baSBill Taylor 
45*9e39c5baSBill Taylor extern void
46*9e39c5baSBill Taylor dapl_srq_dealloc(IN DAPL_SRQ *srq_ptr);
47*9e39c5baSBill Taylor 
48*9e39c5baSBill Taylor #ifdef __cplusplus
49*9e39c5baSBill Taylor }
50*9e39c5baSBill Taylor #endif
51*9e39c5baSBill Taylor 
52*9e39c5baSBill Taylor #endif /* _DAPL_SRQ_UTIL_H_ */
53