2 .\" Copyright (c) 2004, Sun Microsystems, Inc. All Rights Reserved.
3 .\" 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.
4 .\" 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.
5 .\" 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]
6 .TH SCF_LIMIT 3SCF "Aug 17, 2004"
8 scf_limit \- limit information for Service Configuration Facility
12 cc [ \fIflag\fR\&.\|.\|. ] \fIfile\fR\&.\|.\|. \fB-lscf\fR [ \fIlibrary\fR\&.\|.\|. ]
15 \fBssize_t\fR \fBscf_limit\fR(\fBuint32_t\fR \fIname\fR);
21 The \fBscf_limit()\fR function returns information about implementation-defined
22 limits in the service configuration facility. These limits are generally
23 maximum lengths for various strings. The values returned do not change during
24 the execution of a program, but they should not be cached between executions.
27 The available values for \fIname\fR are:
31 \fB\fBSCF_LIMIT_MAX_FMRI_LENGTH\fR\fR
35 Return the maximum length of an FMRI the service configuration facility
42 \fB\fBSCF_LIMIT_MAX_PG_TYPE_LENGTH\fR\fR
46 Return the maximum length for property group types in the service configuration
53 \fB\fBSCF_LIMIT_MAX_NAME_LENGTH\fR\fR
57 Return the maximum length for names in the service configuration facility. This
58 value does not include space for the required terminating null byte.
64 \fB\fBSCF_LIMIT_MAX_VALUE_LENGTH\fR\fR
68 Return the maximum string length a scf_value_t can hold, not including the
69 terminating null byte.
74 Lengths do not include space for the required terminating null byte.
78 Upon successful completion, \fBscf_limit()\fR returns the requested value.
79 Otherwise, it returns -1.
83 The \fBscf_limit()\fR function will fail if:
87 \fB\fBSCF_ERROR_INVALID_ARGUMENT\fR\fR
90 The \fIname\fR argument is not a recognized request.
95 The \fBscf_error\fR(3SCF) function can be used to retrieve the error value.
99 See \fBattributes\fR(5) for descriptions of the following attributes:
107 ATTRIBUTE TYPE ATTRIBUTE VALUE
109 Interface Stability Evolving
117 \fBlibscf\fR(3LIB), \fBscf_error\fR(3SCF), \fBattributes\fR(5)