1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
.\" Hey Emacs! This file is -*- nroff -*- source.
.\"
.\" Copyright (c) 1995 Paul Gortmaker
.\" (gpg109@rsphy1.anu.edu.au)
.\" Wed November 29 10:58:54 EST 1995
.\"
.\" This is free documentation; you can redistribute it and/or
.\" modify it under the terms of the GNU General Public License as
.\" published by the Free Software Foundation; either version 2 of
.\" the License, or (at your option) any later version.
.\'
.\" The GNU General Public License's references to object code
.\" and executables are to be interpreted as the output of any
.\" document formatting or typesetting system, including
.\" intermediate and printed output.
.\"
.\" This manual is distributed in the hope that it will be useful,
.\" but WITHOUT ANY WARRANTY; without even the implied warranty of
.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
.\" GNU General Public License for more details.
.\"
.\" You should have received a copy of the GNU General Public
.\" License along with this manual; if not, write to the Free
.\" Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
.\" USA.
.\"
.\" Translated into German by Ralf Demmer, Translation & Consulting
.\" rdemmer@rdemmer.de, http://www.rdemmer.de
.\" Berlin, 29.1.1999
.\"
.TH OUTB 2 "29. Januar 1999" Linux "Systemaufrufe"
.SH BEZEICHNUNG
outb, outw, outl, outsb, outsw, outsl \- Schnittstellen-Ausgabe
.br
inb, inw, inl, insb, insw, insl \- Schnittstellen-Eingabe
.br
outb_p, outw_p, outl_p, inb_p, inw_p, inl_p \- unterbrochene Ein-/Ausgabe
.sp
.SH BESCHREIBUNG
Diese Funktionen werden fr die Schnittstellen-Eingabe und Ausgabe verwendet.
Sie wurden hauptschlich fr die interne Verwendung im Kernel entwickelt,
knnen aber auch auf der Benutzerebene verwendet werden, wenn die folgenden
.I zustzlichen
Informationen zu den in
.BR outb (9)
aufgefhrten, angegeben werden.
.sp
Sie kompilieren mit
.B \-O
oder
.B \-O2
oder hnlich. Die Funktionen sind als Inline-Makros definiert und werden
ohne aktivierte Optimierungen nicht eingefgt, was zu unaufgelsten Verweisen
whrend des Linkvorgangs fhrt.
.sp
Durch
.BR ioperm (2)
oder auch
.BR iopl (2)
wird der Kernel angewiesen, Benutzeranwendungen den Zugriff auf die
betreffenden Ein- und Ausgabeschnittstellen zu gestatten. Gelingt dies
nicht, erhlt die Anwendung einen Segmentverletzungsfehler.
.SH KONFORM ZU
.B outb
und Co. sind sehr hardwarespezifisch. Die Reihenfolge der Argumente
.I Schnittstelle
und
.I Wert
ist anders als in den meisten DOS-Umsetzungen.
.SH SIEHE AUCH
.BR outb (9),
.BR ioperm (2),
.BR iopl (2).
|