Skip to content

Commit

Permalink
bsd-user: move TARGET_MC_GET_CLEAR_RET to target_os_signal.h
Browse files Browse the repository at this point in the history
Move TARGET_MC_GET_CLEAR_RET to freebsd/target_os_signal.h since it's
architecture agnostic on FreeBSD.

Signed-off-by: Warner Losh <imp@bsdimp.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Kyle Evans <kevans@FreeBSD.org>
  • Loading branch information
bsdimp committed Oct 18, 2021
1 parent 7cb4d7c commit f4a29b6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 3 additions & 0 deletions bsd-user/freebsd/target_os_signal.h
@@ -1,6 +1,9 @@
#ifndef _TARGET_OS_SIGNAL_H_
#define _TARGET_OS_SIGNAL_H_

/* FreeBSD's sys/ucontext.h defines this */
#define TARGET_MC_GET_CLEAR_RET 0x0001

#include "target_os_siginfo.h"
#include "target_arch_signal.h"

Expand Down
2 changes: 0 additions & 2 deletions bsd-user/i386/target_arch_signal.h
Expand Up @@ -27,8 +27,6 @@
#define TARGET_MINSIGSTKSZ (512 * 4) /* min sig stack size */
#define TARGET_SIGSTKSZ (MINSIGSTKSZ + 32768) /* recommended size */

#define TARGET_MC_GET_CLEAR_RET 0x0001

struct target_sigcontext {
/* to be added */
};
Expand Down
2 changes: 0 additions & 2 deletions bsd-user/x86_64/target_arch_signal.h
Expand Up @@ -27,8 +27,6 @@
#define TARGET_MINSIGSTKSZ (512 * 4) /* min sig stack size */
#define TARGET_SIGSTKSZ (MINSIGSTKSZ + 32768) /* recommended size */

#define TARGET_MC_GET_CLEAR_RET 0x0001

struct target_sigcontext {
/* to be added */
};
Expand Down

0 comments on commit f4a29b6

Please sign in to comment.