[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 01/17] bsd-user: Delete TaskState next member
|
From: |
Warner Losh |
|
Subject: |
[PATCH 01/17] bsd-user: Delete TaskState next member |
|
Date: |
Fri, 2 Aug 2024 17:56:01 -0600 |
The next struct member of TaskState is unused. Remove it.
Signed-off-by: Warner Losh <imp@bsdimp.com>
---
bsd-user/qemu.h | 1 -
1 file changed, 1 deletion(-)
diff --git a/bsd-user/qemu.h b/bsd-user/qemu.h
index 3736c417860..4ccbee265a1 100644
--- a/bsd-user/qemu.h
+++ b/bsd-user/qemu.h
@@ -83,7 +83,6 @@ struct emulated_sigtable {
struct TaskState {
pid_t ts_tid; /* tid (or pid) of this task */
- struct TaskState *next;
struct bsd_binprm *bprm;
struct image_info *info;
--
2.45.1
- [PATCH 00/17] For 9.2: A bunch of cleanups and work towards variable pagesize support, Warner Losh, 2024/08/02
- [PATCH 01/17] bsd-user: Delete TaskState next member,
Warner Losh <=
- [PATCH 02/17] bsd-user: Make init_task_state global, Warner Losh, 2024/08/02
- [PATCH 04/17] bsd-user: Implement cpu_copy(), Warner Losh, 2024/08/02
- [PATCH 05/17] bsd-user: Eliminate unused regs arg in load_elf_binary, Warner Losh, 2024/08/02
- [PATCH 12/17] bsd-user: Use guest_range_valid_untagged to validate range, Warner Losh, 2024/08/02
- [PATCH 03/17] bsd-user: Make cpu_model and cpu_type file scope, Warner Losh, 2024/08/02