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)
Sun, May 19, 8:40 PM
Unknown Object (File)
Mar 15 2024, 2:16 PM
Unknown Object (File)
Mar 10 2024, 6:47 AM
Unknown Object (File)
Mar 10 2024, 6:47 AM
Unknown Object (File)
Mar 10 2024, 6:47 AM
Unknown Object (File)
Mar 10 2024, 6:47 AM
Unknown Object (File)
Mar 10 2024, 6:47 AM
Unknown Object (File)
Mar 10 2024, 6:35 AM
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