object: rename deref to unref

This commit is contained in:
2026-02-08 12:36:32 +00:00
parent 0853cff56b
commit 5304e5be00
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -179,7 +179,7 @@ static inline struct task *task_ref(struct task *task)
{
return OBJECT_CAST(struct task, t_base, object_ref(&task->t_base));
}
static inline void task_deref(struct task *task)
static inline void task_unref(struct task *task)
{
object_deref(&task->t_base);
}