summaryrefslogtreecommitdiff
path: root/sys/include
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-05-31 01:21:29 -0400
committerIan Moffett <ian@osmora.org>2025-05-31 01:21:29 -0400
commit2bb882d1b394109f555789ba30e2cedc727c58e1 (patch)
tree2edd002e2de7ada78adb0db4eed31cd81c5d0d1b /sys/include
parent411ce85f691369cb57de42969e18bedecab96ec4 (diff)
kernel: proc: `spawn_data' -> `data'
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include')
-rw-r--r--sys/include/sys/proc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/include/sys/proc.h b/sys/include/sys/proc.h
index 0a7d133..6318c06 100644
--- a/sys/include/sys/proc.h
+++ b/sys/include/sys/proc.h
@@ -64,7 +64,7 @@ struct proc {
struct trapframe tf;
struct pcb pcb;
struct proc *parent;
- void *spawn_data;
+ void *data;
size_t priority;
int exit_status;
bool rested;