[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 06/40] bsd-user: Bring in docs from linux-user for signal_pend
From: |
Warner Losh |
Subject: |
[PATCH v2 06/40] bsd-user: Bring in docs from linux-user for signal_pending |
Date: |
Mon, 24 Jan 2022 18:29:13 -0700 |
This is currently unused, so no code adjustments are needed.
Signed-off-by: Warner Losh <imp@bsdimp.com>
---
bsd-user/qemu.h | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/bsd-user/qemu.h b/bsd-user/qemu.h
index 4dd209e402d..671b26f00cc 100644
--- a/bsd-user/qemu.h
+++ b/bsd-user/qemu.h
@@ -86,7 +86,14 @@ typedef struct TaskState {
struct image_info *info;
struct emulated_sigtable sigtab[TARGET_NSIG];
- int signal_pending; /* non zero if a signal may be pending */
+ /*
+ * Nonzero if process_pending_signals() needs to do something (either
+ * handle a pending signal or unblock signals).
+ * This flag is written from a signal handler so should be accessed via
+ * the qatomic_read() and qatomic_set() functions. (It is not accessed
+ * from multiple threads.)
+ */
+ int signal_pending;
uint8_t stack[];
} __attribute__((aligned(16))) TaskState;
--
2.33.1
- Re: [PATCH v2 03/40] bsd-user/arm/signal.c: Implement setup_sigframe_arch for arm, (continued)
- [PATCH v2 01/40] bsd-user: Complete FreeBSD siginfo, Warner Losh, 2022/01/24
- [PATCH v2 02/40] bsd-user: Create setup_sigframe_arch to setup sigframe context, Warner Losh, 2022/01/24
- [PATCH v2 04/40] bsd-user/arm/signal.c: get_mcontext should zero vfp data, Warner Losh, 2022/01/24
- [PATCH v2 05/40] bsd-user: Remove vestiges of signal queueing code, Warner Losh, 2022/01/24
- [PATCH v2 06/40] bsd-user: Bring in docs from linux-user for signal_pending,
Warner Losh <=
- [PATCH v2 07/40] bsd-user/arm/target_arch_cpu.h: Move EXCP_ATOMIC to match linux-user, Warner Losh, 2022/01/24
- [PATCH v2 08/40] bsd-user/signal.c: implement force_sig_fault, Warner Losh, 2022/01/24
- [PATCH v2 09/40] bsd-user/signal-common.h: Move signal functions prototypes to here, Warner Losh, 2022/01/24
- [PATCH v2 10/40] bsd-user/signal.c: Implement cpu_loop_exit_sigsegv, Warner Losh, 2022/01/24
- [PATCH v2 14/40] bsd-user/arm/target_arch_cpu.h: Use force_sig_fault for EXCP_UDEF, Warner Losh, 2022/01/24
- [PATCH v2 16/40] bsd-user/signal.c: implement abstract target / host signal translation, Warner Losh, 2022/01/24