00001 /* 00002 * CDDL HEADER START 00003 * 00004 * The contents of this file are subject to the terms of the 00005 * Common Development and Distribution License, Version 1.0 only 00006 * (the "License"). You may not use this file except in compliance 00007 * with the License. 00008 * 00009 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 00010 * or http://www.opensolaris.org/os/licensing. 00011 * See the License for the specific language governing permissions 00012 * and limitations under the License. 00013 * 00014 * When distributing Covered Code, include this CDDL HEADER in each 00015 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 00016 * If applicable, add the following below this CDDL HEADER, with the 00017 * fields enclosed by brackets "[]" replaced with your own identifying 00018 * information: Portions Copyright [yyyy] [name of copyright owner] 00019 * 00020 * CDDL HEADER END 00021 */ 00022 /* 00023 * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 00024 * Use is subject to license terms. 00025 */ 00026 00027 #ifndef _VMEM_STAND_H 00028 #define _VMEM_STAND_H 00029 00030 /* #pragma ident "@(#)vmem_stand.h 1.3 05/06/08 SMI" */ 00031 00032 /* 00033 * additional functions defined by the standalone backend 00034 */ 00035 00036 #include <sys/types.h> 00037 00038 #ifdef __cplusplus 00039 extern "C" { 00040 #endif 00041 00042 extern void vmem_stand_init(void); 00043 extern int vmem_stand_add(caddr_t, size_t); 00044 00045 #ifdef __cplusplus 00046 } 00047 #endif 00048 00049 #endif /* _VMEM_STAND_H */