summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorWarner Losh <imp@bsdimp.com>2021-09-18 22:03:43 -0600
committerWarner Losh <imp@bsdimp.com>2021-10-18 12:51:39 -0600
commit7aac7392346d1f5bb9fc31cb7e4f3f1f3fc2be05 (patch)
tree250d02eca770a56066286a83ae7566a7d2ca0ed9
parentf6f0706cc2081ebaf786603aaaf204ae5a39dda7 (diff)
downloadfocaccia-qemu-7aac7392346d1f5bb9fc31cb7e4f3f1f3fc2be05.tar.gz
focaccia-qemu-7aac7392346d1f5bb9fc31cb7e4f3f1f3fc2be05.zip
bsd-user: Remove used from TaskState
The 'used' field in TaskState is write only. Remove it from TaskState.

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>
-rw-r--r--bsd-user/main.c1
-rw-r--r--bsd-user/qemu.h1
2 files changed, 0 insertions, 2 deletions
diff --git a/bsd-user/main.c b/bsd-user/main.c
index 48643eeabc..ee84554854 100644
--- a/bsd-user/main.c
+++ b/bsd-user/main.c
@@ -210,7 +210,6 @@ void init_task_state(TaskState *ts)
 {
     int i;
 
-    ts->used = 1;
     ts->first_free = ts->sigqueue_table;
     for (i = 0; i < MAX_SIGQUEUE_SIZE - 1; i++) {
         ts->sigqueue_table[i].next = &ts->sigqueue_table[i + 1];
diff --git a/bsd-user/qemu.h b/bsd-user/qemu.h
index 3b8475394c..c1170f14d9 100644
--- a/bsd-user/qemu.h
+++ b/bsd-user/qemu.h
@@ -92,7 +92,6 @@ typedef struct TaskState {
 
     struct TaskState *next;
     struct bsd_binprm *bprm;
-    int used; /* non zero if used */
     struct image_info *info;
 
     struct emulated_sigtable sigtab[TARGET_NSIG];