Page MenuHomeFreeBSD

Simplify the inthand_t type for x86.
ClosedPublic

Authored by kib on Mar 29 2016, 8:52 AM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Aug 29, 1:02 AM
Unknown Object (File)
Sat, Aug 29, 12:59 AM
Unknown Object (File)
Fri, Aug 21, 12:43 AM
Unknown Object (File)
Sun, Aug 16, 12:18 PM
Unknown Object (File)
Fri, Aug 14, 4:37 AM
Unknown Object (File)
Fri, Aug 14, 4:22 AM
Unknown Object (File)
Jul 6 2026, 5:22 PM
Unknown Object (File)
Jul 5 2026, 11:47 AM
Subscribers

Details

Summary

Types for the x86 interrupt handler entry points cannot be expressed in C. For i386, the existing type is some approximation, lacking __stdcall attribute and still being wrong for the return type. For amd64, it cannot be even approximated.

Instead, use void (*)(void) which equally serves the purpose, is simpler and allows to unify i386 and amd64.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

kib retitled this revision from to Simplify the inthand_t type for x86..
kib updated this object.
kib edited the test plan for this revision. (Show Details)
kib added reviewers: jhb, emaste.
kib set the repository for this revision to rS FreeBSD src repository - subversion.
jhb edited edge metadata.

Fine with me. The things can't be written directly in C anyway so trying to have a fancy prototype is rather pointless.

This revision is now accepted and ready to land.Mar 29 2016, 3:12 PM
This revision was automatically updated to reflect the committed changes.