Page MenuHomeFreeBSD

ia32: Sync signal context type names with i386.
ClosedPublic

Authored by jhb on Jan 13 2022, 9:08 PM.
Tags
None
Referenced Files
Unknown Object (File)
Jun 23 2024, 1:04 PM
Unknown Object (File)
Jun 16 2024, 2:20 AM
Unknown Object (File)
Jun 15 2024, 6:25 PM
Unknown Object (File)
May 14 2024, 2:12 PM
Unknown Object (File)
May 14 2024, 2:11 PM
Unknown Object (File)
May 13 2024, 4:08 AM
Unknown Object (File)
May 12 2024, 11:24 AM
Unknown Object (File)
May 11 2024, 3:04 AM
Subscribers

Details

Summary
  • Use ia32_freebsd4_* instead of ia32_*4.
  • Use ia32_o* instead of ia32_*3.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 43909
Build 40797: arc lint + arc unit

Event Timeline

jhb requested review of this revision.Jan 13 2022, 9:08 PM
kib added inline comments.
sys/compat/ia32/ia32_signal.h
91

I suspect these ifdefs in the header can be removed.

This revision is now accepted and ready to land.Jan 13 2022, 9:29 PM
imp added inline comments.
sys/amd64/ia32/ia32_signal.c
366

Why osigframe? Is there a reason for that naming convetion?

I think this is right.

@imp COMPAT_43 syscalls get named o<syscall> so this follows that convention. The "3" suffix is weird.

jhb added inline comments.
sys/amd64/ia32/ia32_signal.c
366

Because the rest of things for COMPAT_43 use the 'o' prefix including syscalls, etc. These aren't FreeBSD 3.x things, but BSD43, so the 3 suffix is weird.

This revision was automatically updated to reflect the committed changes.