99N/A/*
1451N/A * CDDL HEADER START
99N/A *
99N/A * The contents of this file are subject to the terms of the
99N/A * Common Development and Distribution License (the "License").
99N/A * You may not use this file except in compliance with the License.
99N/A *
99N/A * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
99N/A * or http://www.opensolaris.org/os/licensing.
99N/A * See the License for the specific language governing permissions
99N/A * and limitations under the License.
99N/A *
99N/A * When distributing Covered Code, include this CDDL HEADER in each
99N/A * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
99N/A * If applicable, add the following below this CDDL HEADER, with the
99N/A * fields enclosed by brackets "[]" replaced with your own identifying
99N/A * information: Portions Copyright [yyyy] [name of copyright owner]
99N/A *
553N/A * CDDL HEADER END
553N/A */
553N/A/* LINTLIBRARY */
99N/A/* PROTOLIB1 */
99N/A
99N/A/*
99N/A * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
99N/A * Use is subject to license terms.
99N/A */
99N/A
99N/A#include <door.h>
1451N/A
1451N/A/* door_calls.c */
99N/Aint door_create(void (*)(void *, char *, size_t, door_desc_t *, uint_t),
99N/A void *, uint_t);
99N/Aint door_xcreate(door_server_procedure_t *, void *, uint_t,
99N/A door_xcreate_server_func_t *, door_xcreate_thrsetup_func_t *,
99N/A void *, int);
99N/Aint door_revoke(int);
99N/Aint door_info(int, door_info_t *);
99N/Aint door_call(int, door_arg_t *);
99N/Aint door_return(char *, size_t, door_desc_t *, uint_t);
99N/Aint door_cred(door_cred_t *);
99N/Aint door_bind(int);
99N/Aint door_unbind(void);
99N/Adoor_server_func_t *door_server_create(door_server_func_t *);
99N/A