opnsense-src/sys/cddl/dev/dtrace
Dimitry Andric 0beb88a242 Adjust function definition in riscv's dtrace_subr.c to avoid clang 15 warning
With clang 15, the following -Werror warning is produced:

    sys/cddl/dev/dtrace/riscv/dtrace_subr.c:165:17: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes]
    dtrace_gethrtime()
                    ^
                     void

This is because dtrace_gethrtime() is declared with a (void) argument
list, but defined with an empty argument list. Make the definition match
the declaration.

MFC after:	3 days
2022-08-14 21:27:34 +02:00
..
aarch64 Fix dtrace fbt return probes on arm64 2021-12-14 16:32:12 +00:00
amd64 dtrace/amd64: Implement emulation of call instructions 2022-08-09 18:34:01 -04:00
arm Adjust function definition in arm's dtrace_subr.c to avoid clang 15 warning 2022-08-14 21:27:34 +02:00
i386 Fix syntax 2020-12-01 23:51:48 +00:00
powerpc Adjust function definition in powerpc's dtrace_subr.c to avoid clang 15 warning 2022-08-14 21:27:34 +02:00
riscv Adjust function definition in riscv's dtrace_subr.c to avoid clang 15 warning 2022-08-14 21:27:34 +02:00
x86 Sync the x86 dis_tables.c with upstream. 2017-02-03 03:22:47 +00:00
dtrace_anon.c
dtrace_cddl.h dtrace: Use C99 fixed-width integer types. 2021-12-28 09:41:25 -08:00
dtrace_debug.c Fix a backwards comparison in the code to dump a DTrace debug buffer. 2017-03-13 18:43:00 +00:00
dtrace_hacks.c Fix DTrace's panic() action. 2015-04-24 03:19:30 +00:00
dtrace_ioctl.c Don't use pcpu_find() to determine if a CPU ID is valid. 2017-11-27 18:42:23 +00:00
dtrace_load.c dtrace: use %zu format specifier for data of size_t type 2021-08-09 00:27:04 +03:00
dtrace_modevent.c
dtrace_sysctl.c dtrace: add a knob to control maximum size of principal buffers 2022-01-11 15:47:50 +02:00
dtrace_test.c Mark more nodes as CTLFLAG_MPSAFE or CTLFLAG_NEEDGIANT (17 of many) 2020-02-26 14:26:36 +00:00
dtrace_unload.c Adjust dtrace_unload() definition to avoid clang 15 warning 2022-07-19 20:48:47 +02:00
dtrace_vtime.c