logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

outb, outw, outl, outsb, outsw, outsl, inb, inw, inl, insb, insw, insl, outb_p, outw_p, outl_p, inb_p,

Description

This family of functions is used to do low-level port input and output. The out* functions do port output, the in* functions do port input; the b-suffix functions are byte-width and the w-suffix functions word-width; the _p-suffix functions pause until the I/O completes. They are primarily designed for internal kernel use, but can be used from user space. You must compile with -O or -O2 or similar. The functions are defined as inline macros, and will not be substituted in without optimization enabled, causing unresolved references at link time. You use ioperm(2) or alternatively iopl(2) to tell the kernel to allow the user space application to access the I/O ports in question. Failure to do this will cause the application to receive a segmentation fault.

Library

Standard C library (libc, -lc)

Name

outb, outw, outl, outsb, outsw, outsl, inb, inw, inl, insb, insw, insl, outb_p, outw_p, outl_p, inb_p, inw_p, inl_p - port I/O

See Also

ioperm(2), iopl(2) Linux man-pages 6.9.1 2024-05-02 outb(2)

Standards

None.

Synopsis

#include<sys/io.h>unsignedcharinb(unsignedshortport);unsignedcharinb_p(unsignedshortport);unsignedshortinw(unsignedshortport);unsignedshortinw_p(unsignedshortport);unsignedintinl(unsignedshortport);unsignedintinl_p(unsignedshortport);voidoutb(unsignedcharvalue,unsignedshortport);voidoutb_p(unsignedcharvalue,unsignedshortport);voidoutw(unsignedshortvalue,unsignedshortport);voidoutw_p(unsignedshortvalue,unsignedshortport);voidoutl(unsignedintvalue,unsignedshortport);voidoutl_p(unsignedintvalue,unsignedshortport);voidinsb(unsignedshortport,voidaddr[.count],unsignedlongcount);voidinsw(unsignedshortport,voidaddr[.count],unsignedlongcount);voidinsl(unsignedshortport,voidaddr[.count],unsignedlongcount);voidoutsb(unsignedshortport,constvoidaddr[.count],unsignedlongcount);voidoutsw(unsignedshortport,constvoidaddr[.count],unsignedlongcount);voidoutsl(unsignedshortport,constvoidaddr[.count],unsignedlongcount);

Versions

outb() and friends are hardware-specific. The value argument is passed first and the port argument is passed second, which is the opposite order from most DOS implementations.

See Also