diff options
author | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2013-03-15 09:10:53 +0000 |
---|---|---|
committer | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2013-03-15 09:10:53 +0000 |
commit | 49aac2bac6f6269f9e44cf55dc4de415e2a24efc (patch) | |
tree | 85a487a578e55d597c61aea9298132b9ed5c669a /share | |
parent | 34d0cca60db6731f475f499a11e845c965fd5519 (diff) |
Delete the sequencer(4) driver, since its not used any longer. Diff
mostly from armani.
ok miod, mpi, jsg and help from sthen
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man4/Makefile | 5 | ||||
-rw-r--r-- | share/man/man4/sequencer.4 | 85 |
2 files changed, 2 insertions, 88 deletions
diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile index 3c99efa6bd4..0da50795132 100644 --- a/share/man/man4/Makefile +++ b/share/man/man4/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.544 2013/03/14 11:18:37 mpi Exp $ +# $OpenBSD: Makefile,v 1.545 2013/03/15 09:10:52 ratchov Exp $ MAN= aac.4 ac97.4 acphy.4 \ acpi.4 acpiac.4 acpiasus.4 acpibat.4 acpibtn.4 acpicpu.4 acpidock.4 \ @@ -50,7 +50,7 @@ MAN= aac.4 ac97.4 acphy.4 \ rtfps.4 rtii.4 rtw.4 safe.4 safte.4 san.4 sbt.4 sbus.4 schsio.4 \ scsi.4 sd.4 \ sdmmc.4 sdhc.4 se.4 ses.4 \ - sequencer.4 sf.4 sf2r.4 sfr.4 sili.4 siop.4 sis.4 sk.4 sl.4 sli.4 \ + sf.4 sf2r.4 sfr.4 sili.4 siop.4 sis.4 sk.4 sl.4 sli.4 \ sm.4 smsc.4 softraid.4 spdmem.4 sdtemp.4 speaker.4 sppp.4 sqphy.4 \ st.4 ste.4 stge.4 sti.4 \ stp.4 sv.4 sym.4 systrace.4 tcic.4 tcp.4 termios.4 tht.4 ti.4 tl.4 \ @@ -88,7 +88,6 @@ MLINKS+=pty.4 ptm.4 MLINKS+=random.4 arandom.4 MLINKS+=random.4 srandom.4 random.4 urandom.4 MLINKS+=scsi.4 scsibus.4 -MLINKS+=sequencer.4 music.4 MLINKS+=sk.4 skc.4 msk.4 mskc.4 MLINKS+=speaker.4 spkr.4 MLINKS+=tht.4 thtc.4 diff --git a/share/man/man4/sequencer.4 b/share/man/man4/sequencer.4 deleted file mode 100644 index f3dc805ab8d..00000000000 --- a/share/man/man4/sequencer.4 +++ /dev/null @@ -1,85 +0,0 @@ -.\" $OpenBSD: sequencer.4,v 1.6 2008/06/26 05:42:07 ray Exp $ -.\" $NetBSD: midi.4,v 1.4 1998/08/22 14:45:35 augustss Exp $ -.\" -.\" Copyright (c) 1997 The NetBSD Foundation, Inc. -.\" 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 NETBSD FOUNDATION, INC. AND CONTRIBUTORS -.\" ``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 FOUNDATION OR CONTRIBUTORS -.\" 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 $Mdocdate: June 26 2008 $ -.Dt SEQUENCER 4 -.Os -.Sh NAME -.Nm sequencer -.Nd OSS-compatible MIDI sequencer device -.Sh SYNOPSIS -.Cd "pseudo-device sequencer" Op Ar count -.Pp -.Fd #include <sys/types.h> -.Fd #include <sys/midiio.h> -.Sh DESCRIPTION -The -.Nm -device provides an event-oriented interface simultaneously -to all MIDI ports. -Events sent to or received from this device not only contain the -actual MIDI events, but also timing information. -The kernel will make sure that data is sent to the physical -device at the indicated time. -The -.Nm -device uses the -.Xr midi 4 -devices internally and they are unavailable when used by the -.Nm -device. -.Pp -The API for the -.Nm -device is binary compatible with the OSS sequencer -interface. -.Sh FILES -.Bl -tag -width /dev/sequencer -compact -.It Pa /dev/music -new -.Nm -device using 8-byte events -.It Pa /dev/sequencer -old -.Nm -device using 4-byte events -.El -.Sh SEE ALSO -.Xr midiplay 1 , -.Xr ioctl 2 , -.Xr ossaudio 3 , -.Xr midi 4 -.Sh HISTORY -The -.Nm -driver first appeared in -.Ox 2.5 . -.Sh AUTHORS -The -.Nm -driver was written by -.An Lennart Augustsson . |