mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
a0655615c9
replace confusing "tcb" (task control block) terminology with clearer "mrb_task" naming: - struct mrb_tcb -> struct mrb_task - update mrb_task_state to use mrb_task pointers - rename internal functions to avoid naming conflicts: - mrb_task_new -> task_alloc - mrb_task_free (lifecycle) -> task_free - update field names for clarity: - tcb_join -> join - task (ruby object) -> self - value (return value) -> result this makes the code more readable and follows mruby naming conventions like mrb_context, mrb_irep, etc. Co-authored-by: Claude <noreply@anthropic.com>