mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
4f398f6126
`q_insert_task` and `q_delete_task` were exporting bare `q_*` names from libmruby.a -- single-letter prefixes don't belong to the gem's namespace and risk colliding with anything else linked in. Rename to `mrb_task_q_insert` / `mrb_task_q_delete`, matching the `mrb_task_*` convention already used for the rest of the gem's externally visible symbols. Callers in task.c and task_queue.c are updated to the new names. Closes #6858. Co-authored-by: Claude <noreply@anthropic.com>