xref: /illumos-gate/usr/src/man/man3tsol/blminmax.3tsol (revision c559157643fef9f9afb0414e00a3579407ba3052)
te
Copyright (c) 2007, 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]
BLMINMAX 3TSOL "Jul 20, 2007"
NAME
blminmax, blmaximum, blminimum - bound of two labels
SYNOPSIS

cc [flag...] file... -ltsol [library...]

#include <tsol/label.h>

void blmaximum(m_label_t *maximum_label,
 const m_label_t *bounding_label);

void blminimum(m_label_t *minimum_label,
 const m_label_t *bounding_label);
DESCRIPTION

The blmaximum() function replaces the contents of label maximum_label with the least upper bound of the labels maximum_label and bounding_label. The least upper bound is the greater of the classifications and all of the compartments of the two labels. This is the least label that dominates both of the original labels.

The blminimum() function replaces the contents of label minimum_label with the greatest lower bound of the labels minimum_label and bounding_label. The greatest lower bound is the lower of the classifications and only the compartments that are contained in both labels. This is the greatest label that is dominated by both of the original labels.

ATTRIBUTES

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

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

label_to_str(3TSOL), libtsol(3LIB), sbltos(3TSOL), attributes(5)

NOTES

The functionality described on this manual page is available only if the system is configured with Trusted Extensions.