svr4_fuser.h revision 65302
143412Snewton/*
250477Speter * $FreeBSD: head/sys/compat/svr4/svr4_fuser.h 65302 2000-08-31 22:54:09Z obrien $
343412Snewton *	Derived from:
443412Snewton *	$NetBSD: svr4_fuser.h,v 1.4 1998/09/04 19:54:38 christos Exp $	 */
543412Snewton
643412Snewton/*-
743412Snewton * Original Copyright:
843412Snewton *
943412Snewton * Copyright (c) 1994 The NetBSD Foundation, Inc.
1043412Snewton * All rights reserved.
1143412Snewton *
1243412Snewton * This code is derived from software contributed to The NetBSD Foundation
1343412Snewton * by Christos Zoulas.
1443412Snewton *
1543412Snewton * Redistribution and use in source and binary forms, with or without
1643412Snewton * modification, are permitted provided that the following conditions
1743412Snewton * are met:
1843412Snewton * 1. Redistributions of source code must retain the above copyright
1943412Snewton *    notice, this list of conditions and the following disclaimer.
2043412Snewton * 2. Redistributions in binary form must reproduce the above copyright
2143412Snewton *    notice, this list of conditions and the following disclaimer in the
2243412Snewton *    documentation and/or other materials provided with the distribution.
2343412Snewton * 3. All advertising materials mentioning features or use of this software
2443412Snewton *    must display the following acknowledgement:
2543412Snewton *        This product includes software developed by the NetBSD
2643412Snewton *        Foundation, Inc. and its contributors.
2743412Snewton * 4. Neither the name of The NetBSD Foundation nor the names of its
2843412Snewton *    contributors may be used to endorse or promote products derived
2943412Snewton *    from this software without specific prior written permission.
3043412Snewton *
3143412Snewton * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
3243412Snewton * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
3343412Snewton * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
3443412Snewton * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
3543412Snewton * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
3643412Snewton * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
3743412Snewton * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
3843412Snewton * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
3943412Snewton * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
4043412Snewton * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
4143412Snewton * POSSIBILITY OF SUCH DAMAGE.
4243412Snewton */
4343412Snewton
4443412Snewton/*
4543412Snewton * Portions of this code have been derived from code contributed to the
4643412Snewton * FreeBSD Project by Mark Newton.
4743412Snewton *
4843412Snewton * Copyright (c) 1999 Mark Newton
4943412Snewton * All rights reserved.
5043412Snewton *
5143412Snewton * Redistribution and use in source and binary forms, with or without
5243412Snewton * modification, are permitted provided that the following conditions
5343412Snewton * are met:
5443412Snewton * 1. Redistributions of source code must retain the above copyright
5543412Snewton *    notice, this list of conditions and the following disclaimer.
5643412Snewton * 2. Redistributions in binary form must reproduce the above copyright
5743412Snewton *    notice, this list of conditions and the following disclaimer in the
5843412Snewton *    documentation and/or other materials provided with the distribution.
5943412Snewton * 3. The name of the author may not be used to endorse or promote products
6043412Snewton *    derived from this software without specific prior written permission
6143412Snewton *
6243412Snewton * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
6343412Snewton * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
6443412Snewton * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
6543412Snewton * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
6643412Snewton * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
6743412Snewton * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
6843412Snewton * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
6943412Snewton * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
7043412Snewton * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
7143412Snewton * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
7243412Snewton */
7343412Snewton
7443412Snewton#ifndef	_SVR4_FUSER_H_
7543412Snewton#define	_SVR4_FUSER_H_
7643412Snewton
7765302Sobrien#include <compat/svr4/svr4_types.h>
7843412Snewton
7943412Snewtonstruct svr4_f_user {
8043412Snewton	svr4_pid_t	fu_pid;
8143412Snewton	int		fu_flags;
8243412Snewton	uid_t		fu_uid;
8343412Snewton};
8443412Snewton
8543412Snewton
8643412Snewton#define SVR4_F_FILE_ONLY	1
8743412Snewton#define SVR4_F_CONTAINED	2
8843412Snewton
8943412Snewton#define SVR4_F_CDIR	0x01
9043412Snewton#define SVR4_F_RDIR	0x02
9143412Snewton#define SVR4_F_TEXT	0x04
9243412Snewton#define SVR4_F_MAP	0x08
9343412Snewton#define SVR4_F_OPEN	0x10
9443412Snewton#define SVR4_F_TRACE	0x20
9543412Snewton#define SVR4_F_TTY	0x40
9643412Snewton
9743412Snewton#endif /* !_SVR4_FUSER_H_ */
98