summaryrefslogtreecommitdiffstats
path: root/bsd-user/qemu.h
diff options
context:
space:
mode:
authorWarner Losh2022-01-17 00:33:21 +0100
committerWarner Losh2022-01-28 23:52:38 +0100
commit4804722593bd1735ce810e380247788200bcb961 (patch)
tree22442afc9e4a649a3d8a660a4461921efbd6b1c3 /bsd-user/qemu.h
parentbsd-user: Remove vestiges of signal queueing code (diff)
downloadqemu-4804722593bd1735ce810e380247788200bcb961.tar.gz
qemu-4804722593bd1735ce810e380247788200bcb961.tar.xz
qemu-4804722593bd1735ce810e380247788200bcb961.zip
bsd-user: Bring in docs from linux-user for signal_pending
This is currently unused, so no code adjustments are needed. Signed-off-by: Warner Losh <imp@bsdimp.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'bsd-user/qemu.h')
-rw-r--r--bsd-user/qemu.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/bsd-user/qemu.h b/bsd-user/qemu.h
index 4dd209e402..671b26f00c 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;