Page MenuHomeFreeBSD

libsysdecode: Add method for decoding linux signal names
ClosedPublic

Authored by dchagin on May 15 2022, 4:48 PM.
Tags
None
Referenced Files
Unknown Object (File)
Mon, Mar 17, 2:39 PM
Unknown Object (File)
Sun, Mar 16, 5:39 PM
Unknown Object (File)
Sun, Mar 16, 12:21 AM
Unknown Object (File)
Feb 20 2025, 11:21 PM
Unknown Object (File)
Feb 13 2025, 5:46 PM
Unknown Object (File)
Feb 3 2025, 12:00 AM
Unknown Object (File)
Jan 26 2025, 6:01 PM
Unknown Object (File)
Jan 23 2025, 5:24 PM
Subscribers

Diff Detail

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

Event Timeline

Do you think it's worth #defining a LIBSYSDECODE_LINUXULATOR or such? I presume we'll add riscv and/or ppc at some point.

Do you think it's worth #defining a LIBSYSDECODE_LINUXULATOR or such? I presume we'll add riscv and/or ppc at some point.

indeed, I'll put it into the sysdecode.h like
#if defined(amd64) || defined(i386) || defined(aarch64)
#define LINUX_ABI_PRESENT
#endif /* amd64 || i386 || aarch64 */

btw, for SIGRT0 and SIGRT1 I temporarily use glibc names, because it's convenient for me right now, someday it can be replaced

I suspect btw you should probably add a sysdecode_linux.3 manpage or the like as part of this series.

This revision is now accepted and ready to land.May 31 2022, 4:34 PM