summaryrefslogtreecommitdiff
path: root/docs/application/thread.md
diff options
context:
space:
mode:
authornodist <kevin.comas.git@gmail.com>2026-06-30 16:13:39 -0400
committernodist <kevin.comas.git@gmail.com>2026-06-30 16:13:39 -0400
commitdd9713497bfc9e27f9b1ff3181d34ee241f05ec8 (patch)
treed5060412fb69387778d863ffaf7a4a47d9ea848e /docs/application/thread.md
parentcf9285b1dbdf687630076149413f16e5d4af82e8 (diff)
match internal kpl status
Diffstat (limited to 'docs/application/thread.md')
-rw-r--r--docs/application/thread.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/application/thread.md b/docs/application/thread.md
index d564d20..7ed5cae 100644
--- a/docs/application/thread.md
+++ b/docs/application/thread.md
@@ -16,7 +16,8 @@ typedef struct _task {
kpl_class state[KPL_TASK_STATE_SIZE];
kpl_result result;
task_fn *fn;
- int32_t thread_id;
+ uint32_t io_flags;
+ int32_t io_res, thread_id;
int16_t state_length;
_Atomic bool join_ready;
} task;