diff options
author | Mattias Andrée <maandree@kth.se> | 2023-06-24 17:15:21 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2023-06-24 17:15:21 +0200 |
commit | f61fda368da04a569e10c9928c01cfdca0faff7e (patch) | |
tree | c9789d794806a1d1468b7fae32134dcebb6ca67e /linux/os.h | |
parent | Fix some illegal aliasing (diff) | |
download | sctrace-f61fda368da04a569e10c9928c01cfdca0faff7e.tar.gz sctrace-f61fda368da04a569e10c9928c01cfdca0faff7e.tar.bz2 sctrace-f61fda368da04a569e10c9928c01cfdca0faff7e.tar.xz |
Argument 3 and 4 are swapped on SPARC for PTRACE_GETREGS and PTRACE_SETREGS
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'linux/os.h')
-rw-r--r-- | linux/os.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -30,3 +30,9 @@ #else # error "This program is only implemented for x86-64 on Linux" #endif + +#if defined(__sparc__) +# define REGARGS(a, b) b, a +#else +# define REGARGS(a, b) a, b +#endif |