Date: Wed, 8 Nov 2000 02:27:51 +0200 From: Giorgos Keramidas <keramida@ceid.upatras.gr> To: Howard Blue <hblue@oaklandnet.com> Cc: questions@FreeBSD.ORG Subject: Re: C Programming using FreeBSD Message-ID: <20001108022749.A14429@hades.hell.gr> In-Reply-To: <3A085E29.4BA73D22@oaklandnet.com>; from hblue@oaklandnet.com on Tue, Nov 07, 2000 at 11:55:22AM -0800 References: <3A085E29.4BA73D22@oaklandnet.com>
next in thread | previous in thread | raw e-mail | index | archive | help
On Tue, Nov 07, 2000 at 11:55:22AM -0800, Howard Blue wrote: > How to use outb( ) and inb( ) with gcc and FreeBSD? [...] > > if (ioperm(BASEPORT, 3, 1) {perror("ioperm"); exit(1);} The ioperm() function is Linux-specific. In FreeBSD you can use: % man -k ioperm i386_get_ioperm(2), i386_set_ioperm(2) - manage per-process access to the i386 I/O port space and start reading the manpages of i386_set_ioperm() for more information on ways to access the i386 hardware I/O ports directly. -- Giorgos Keramidas, < keramida @ ceid . upatras . gr > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20001108022749.A14429>