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)
Tue, Sep 17, 8:19 PM
Unknown Object (File)
Mon, Sep 16, 8:21 AM
Unknown Object (File)
Tue, Sep 10, 6:54 AM
Unknown Object (File)
Thu, Sep 5, 2:19 AM
Unknown Object (File)
Aug 4 2024, 4:59 PM
Unknown Object (File)
Jul 16 2024, 5:45 AM
Unknown Object (File)
Jul 2 2024, 4:35 PM
Unknown Object (File)
Jul 2 2024, 4:35 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