xref: /illumos-gate/usr/src/man/man3scf/scf_simple_walk_instances.3scf (revision b210e77709da8e42dfe621e10ccf4be504206058)
te
Copyright (c) 2004, Sun Microsystems, Inc. All Rights Reserved.
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 or http://www.opensolaris.org/os/licensing. 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]
SCF_SIMPLE_WALK_INSTANCES 3SCF "Aug 17, 2004"
NAME
scf_simple_walk_instances - observational interface for Service Configuration Facility
SYNOPSIS

cc [ flag.\|.\|. ] file.\|.\|. -lscf [ library.\|.\|. ]
#include <libscf.h>

int scf_simple_walk_instances(uint_t flags, void *private,
 int (*inst_callback)(scf_handle_t *, scf_instance_t *, void *));
DESCRIPTION

The scf_simple_walk_instances() function iterates over every service instance in a specified state and calls a callback function provided by the user on each specified instance.

The function takes a flags argument to indicate which instance states are involved in the iteration, an opaque buffer to be passed to the callback function, and a callback function with three arguments, a handle, an instance pointer, and an opaque buffer. If the callback function returns a value other than success, iteration is ended, an error is set, and the function returns -1.

The handle passed to the callback function is provided to the callback function by the library. This handle is used by the callback function for all low-level allocation involved in the function.

The simplified library provides defined constants for the flags argument. The user can use a bitwise OR to apply more than one flag. The SCF_STATE_ALL flag is a bitwise OR of all the other states.The flags are:

SCF_STATE_UNINIT

SCF_STATE_MAINT

SCF_STATE_OFFLINE

SCF_STATE_DISABLED

SCF_STATE_ONLINE

SCF_STATE_DEGRADED

SCF_STATE_ALL

RETURN VALUES

Upon successful completion, scf_simple_walk_instances() returns 0. Otherwise, it returns -1.

ATTRIBUTES

See attributes(7) for descriptions of the following attributes:

ATTRIBUTE TYPE ATTRIBUTE VALUE
Interface Stability Evolving
MT-Level MT-Safe
SEE ALSO

libscf (3LIB), attributes (7)