2 .\" This manual page is derived from the DAT/uDAPL 1.2 specification.
3 .\" Portions Copyright (c) 2007, Sun Microsystems, Inc. All Rights Reserved.
4 .\" 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.
5 .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License.
6 .\" 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]
7 .TH DAT_EP_SET_WATERMARK 3DAT "Jul 16, 2004"
9 dat_ep_set_watermark \- set high watermark on Endpoint
13 cc [ \fIflag\fR\&.\|.\|. ] \fIfile\fR\&.\|.\|. \fB-ldat\fR [ \fIlibrary\fR\&.\|.\|. ]
14 #include <\fBdat/udat.h\fR>
17 dat_ep_set_watermark (
18 IN DAT_EP_HANDLE ep_handle,
19 IN DAT_COUNT soft_high_watermark,
20 IN DAT_COUNT hard_high_watermark
31 The handle for an instance of an Endpoint.
37 \fB\fIsoft_high_watermark\fR\fR
40 The soft high watermark for the number of Recv buffers consumed by the
47 \fB\fIhard_high_watermark\fR\fR
50 The hard high watermark for the number of Recv buffers consumed by the
57 The \fBdat_ep_set_watermark()\fR function sets the soft and hard high watermark
58 values for EP and arms EP for generating asynchronous events for high
59 watermarks. An asynchronous event will be generated for IA \fIasync_evd\fR when
60 the number of Recv buffers at EP exceeds the soft high watermark for the first
61 time. A connection broken event will be generated for EP \fIconnect_evd\fR when
62 the number of Recv buffers at EP exceeds the hard high watermark. These can
63 occur during this call or when EP takes a buffer from the SRQ or EP RQ. The
64 soft and hard high watermark asynchronous event generation and setting are
65 independent of each other.
68 The asynchronous event for a soft high watermark is generated only once per
69 setting. Once an event is generated, no new asynchronous events for the soft
70 high watermark is generated until the EP is again set for the soft high
71 watermark. If the Consumer is once again interested in the event, the Consumer
72 should again set the soft high watermark.
75 If the Consumer is not interested in a soft or hard high watermark, the value
76 of \fBDAT_WATERMARK_INFINITE\fR can be specified for the case that is the
77 default value. This value specifies that a non-asynchronous event will be
78 generated for a high watermark EP attribute for which this value is set. It
79 does not prevent generation of a connection broken event for EP when no Recv
80 buffer is available for a message arrived on the EP connection.
83 The operation is supported for all states of Endpoint.
88 \fB\fBDAT_SUCCESS\fR\fR
91 The operation was successful.
97 \fB\fBDAT_INVALID_HANDLE\fR\fR
100 The \fIep_handle\fR argument is an invalid DAT handle.
106 \fB\fBDAT_INVALID_PARAMETER\fR\fR
109 One of the parameters is invalid.
115 \fB\fBDAT_MODEL_NOT_SUPPORTED\fR\fR
118 The requested Model was not supported by the Provider. The Provider does not
119 support EP Soft or Hard High Watermarks.
125 For a hard high watermark, the Provider is ready to generate a connection
126 broken event as soon as the connection is established.
129 If the asynchronous event for a soft or hard high watermark has not yet been
130 generated, this call simply modifies the values for these attributes. The
131 Provider remains armed for generation of these asynchronous events.
134 Regardless of whether an asynchronous event for the soft and hard high
135 watermark has been generated, this operation will set the generation of an
136 asynchronous event with the Consumer-provided high watermark values. If the new
137 high watermark values are below the current number of Receive DTOs at EP, an
138 asynchronous event will be generated immediately. Otherwise the old soft or
139 hard (or both) high watermark values are simply replaced with the new ones.
143 See \fBattributes\fR(5) for descriptions of the following attributes:
151 ATTRIBUTE TYPE ATTRIBUTE VALUE
153 Interface Stability Standard: uDAPL, 1.2
161 \fBdat_ep_create\fR(3DAT), \fBdat_ep_recv_query\fR(3DAT),
162 \fBdat_srq_create\fR(3DAT), \fBdat_srq_free\fR(3DAT),
163 \fBdat_srq_post_recv\fR(3DAT), \fBdat_srq_query\fR(3DAT),
164 \fBdat_srq_resize\fR(3DAT), \fBdat_srq_set_lw\fR(3DAT), \fBlibdat\fR(3LIB),