From 1f11082c42b73a3c199f41ce4f6560155d04c61a Mon Sep 17 00:00:00 2001 From: downsj <> Date: Mon, 17 Jun 1996 08:17:33 +0000 Subject: [PATCH] opendev.3: opendev(3) man page --- src/lib/libutil/Makefile | 6 ++-- src/lib/libutil/opendev.3 | 71 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 74 insertions(+), 3 deletions(-) create mode 100644 src/lib/libutil/opendev.3 diff --git a/src/lib/libutil/Makefile b/src/lib/libutil/Makefile index 4b9412b0..77fe63cc 100644 --- a/src/lib/libutil/Makefile +++ b/src/lib/libutil/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.5 1996/06/17 07:46:01 downsj Exp $ +# $OpenBSD: Makefile,v 1.6 1996/06/17 08:17:32 downsj Exp $ # $NetBSD: Makefile,v 1.8 1996/05/16 07:03:28 thorpej Exp $ LIB= util @@ -8,8 +8,8 @@ HDRS= util.h scsi.h SRCS= getmaxpartitions.c getrawpartition.c login.c login_tty.c logout.c \ logwtmp.c opendev.c passwd.c pty.c scsi.c -MAN= getmaxpartitions.3 getrawpartition.3 login.3 openpty.3 pw_init.3 \ - pw_lock.3 scsi.3 +MAN= getmaxpartitions.3 getrawpartition.3 login.3 opendev.3 openpty.3 \ + pw_init.3 pw_lock.3 scsi.3 MLINKS+=login.3 logout.3 MLINKS+=login.3 logwtmp.3 diff --git a/src/lib/libutil/opendev.3 b/src/lib/libutil/opendev.3 new file mode 100644 index 00000000..481f9cc4 --- /dev/null +++ b/src/lib/libutil/opendev.3 @@ -0,0 +1,71 @@ +.\" $OpenBSD: opendev.3,v 1.1 1996/06/17 08:17:33 downsj Exp $ +.\" +.\" Copyright (c) 1996, Jason Downs. All rights reserved. +.\" +.\" Redistribution and use in source and binary forms, with or without +.\" modification, are permitted provided that the following conditions +.\" are met: +.\" 1. Redistributions of source code must retain the above copyright +.\" notice, this list of conditions and the following disclaimer. +.\" 2. Redistributions in binary form must reproduce the above copyright +.\" notice, this list of conditions and the following disclaimer in the +.\" documentation and/or other materials provided with the distribution. +.\" +.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS +.\" OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +.\" WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +.\" DISCLAIMED. IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, +.\" INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +.\" (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +.\" SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +.\" CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +.\" SUCH DAMAGE. +.\" +.Dd June 17, 1996 +.Dt OPENDEV 3 +.Os OpenBSD +.Sh NAME +.Nm opendev +.Nd short form device open routine +.Sh SYNOPSIS +.Fd #include +.Ft int +.Fn opendev "char *path" "int oflags" "int dflags" "char **realpath" +.Sh DESCRIPTION +The +.Fn opendev +function opens a device using the ``short form'' name. This is typically +``sd0'' or ``sd0c'', for instance, which will be expaned to +.Pa /dev/rsd0c +on most architectures. +.Pp +The +.Ar oflags +are the same as the +.Ar flags +passed to +.Xr open 2 . +.Pp +The +.Ar dflags +are specified by +.Em or Ns 'ing +the following values: +.Pp +.Bd -literal -offset indent -compact +OPENDEV_PART attempt to open the raw partition during expansion +OPENDEV_DRCT attempt to open the device itself during expansion +.Ed +.Pp +.Ar Realpath +will be modified to point at the fully expanded device name. +.Pp +.Sh RETURN VALUES +The +.Fn opendev +return value is the return value of +.Xr open 2 . +.Sh SEE ALSO +.Xr open 2