summaryrefslogtreecommitdiff
path: root/docs/application/thread.md
diff options
context:
space:
mode:
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;