/*
* CDDL HEADER START
*
* 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
* 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]
*
* CDDL HEADER END
*/
/*
* Copyright 2009 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#include "mtlib.h"
#include <libscf.h>
#include <unistd.h>
#include <stdlib.h>
#include <zone.h>
#include <thread.h>
#include <dlfcn.h>
#include <atomic.h>
/*
* Pull in the following three interfaces from libscf without introducing
* a dependency on it, which since libscf depends on libc would be circular:
*
* scf_simple_prop_get
* scf_simple_prop_next_boolean
* scf_simple_prop_free
*/
const char *, const char *, const char *);
static void
load_scf(void)
{
"scf_simple_prop_next_boolean");
if (real_scf_simple_prop_get == NULL ||
if (scf_simple_prop_get == NULL)
else {
}
if (scf_simple_prop_next_boolean == NULL)
else {
}
if (scf_simple_prop_free == NULL)
(scf_simple_prop_free_t)(-1);
else {
}
}
if (scf_handle)
(void) dlclose(scf_handle);
}
static void
check_archive_update(void)
{
if (real_scf_simple_prop_get == NULL ||
load_scf();
}
(scf_simple_prop_next_boolean_t)(-1) ||
return;
}
"uadmin_boot_archive_sync");
if (prop) {
NULL)
}
if (update_flag == B_TRUE)
}
int
{
}
}