Page MenuHomeFreeBSD

syscall(2): make i386 less of an outlier
ClosedPublic

Authored by brooks on Mar 5 2024, 9:49 PM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Nov 28, 8:31 AM
Unknown Object (File)
Nov 9 2024, 6:10 PM
Unknown Object (File)
Nov 9 2024, 6:10 PM
Unknown Object (File)
Nov 9 2024, 6:10 PM
Unknown Object (File)
Nov 6 2024, 8:26 AM
Unknown Object (File)
Nov 4 2024, 8:12 AM
Unknown Object (File)
Oct 5 2024, 7:50 PM
Unknown Object (File)
Oct 3 2024, 12:23 AM
Subscribers

Details

Summary

Unlike other architectures, i386 only defined syscall() and not
_syscall() or sys_syscall(). The syscall() function then invoked the
desired system call directly rather than invoking syscall(2). Keep the
latter as it's marginally more efficent, but also create the
conventional _syscall() and
sys_syscall() stubs.

This avoids the need to special case syscall(2) in the symbol list
generation in libsys.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable