summaryrefslogtreecommitdiff
path: root/lib/libsysdecode/linux.c
AgeCommit message (Collapse)Author
2023-11-26lib: Automated cleanup of cdefs and other formattingWarner Losh
Apply the following automated changes to try to eliminate no-longer-needed sys/cdefs.h includes as well as now-empty blank lines in a row. Remove /^#if.*\n#endif.*\n#include\s+<sys/cdefs.h>.*\n/ Remove /\n+#include\s+<sys/cdefs.h>.*\n+#if.*\n#endif.*\n+/ Remove /\n+#if.*\n#endif.*\n+/ Remove /^#if.*\n#endif.*\n/ Remove /\n+#include\s+<sys/cdefs.h>\n#include\s+<sys/types.h>/ Remove /\n+#include\s+<sys/cdefs.h>\n#include\s+<sys/param.h>/ Remove /\n+#include\s+<sys/cdefs.h>\n#include\s+<sys/capsicum.h>/ Sponsored by: Netflix
2023-08-16Remove $FreeBSD$: one-line .c patternWarner Losh
Remove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/
2023-07-09libsysdecode: Drop dead __amd64__ && COMPAT_32BIT codeJessica Clarke
Under COMPAT_32BIT we are compiling 32-bit code and so __amd64__ is not defined, __i386__ is, and we use the real i386 headers. Reviewed by: brooks, jhb, imp Differential Revision: https://reviews.freebsd.org/D40916
2023-05-26libsysdecode: Decode linux_clone syscall flagsDmitry Chagin
Reviewed by: emaste Differential Revision: https://reviews.freebsd.org/D40150 MFC after: 1 week
2023-02-14linux(4): Rename linux_timer.h to linux_time.hDmitry Chagin
To avoid confusing people, rename linux_timer.h to linux_time.h, as linux_timer.c is the implementation of timer syscalls only, while linux_time.c contains implementation of all stuff declared in linux_time.h. MFC after: 2 weeks
2022-06-23libsysdecode: Fix a typo in my emailDmitry Chagin
Reported by: Mikaƫl Urankar MFC after: 2 weeks
2022-06-22libsysdecode: Decode Linux open() flagsDmitry Chagin
MFC after: 2 weeks
2022-06-22libsysdecode: Decode Linux *at() flagsDmitry Chagin
MFC after: 2 weeks
2022-06-22kdump: Decode Linux clock_nanosleep syscallDmitry Chagin
MFC after: 2 weeks
2022-06-22kdump: Decode Linux sigprocmask how argumentDmitry Chagin
MFC after: 2 weeks
2022-06-22libsysdecode: Add method for decoding Linux signal namesDmitry Chagin
Reviewed by: jhb Differential revision: https://reviews.freebsd.org/D35215 MFC after: 2 weeks
2022-06-22libsysdecode: Add preliminary support for decoding Linux syscallsDmitry Chagin
Differential revision: https://reviews.freebsd.org/D35354 MFC after: 2 weeks