Changeset d71b0de in mainline for kernel/generic/src/ipc/kbox.c
- Timestamp:
- 2026-03-27T10:06:12Z (3 days ago)
- Parents:
- 4f16db1 (diff), 455241b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2026-03-27 10:06:12)
- git-committer:
- GitHub <noreply@…> (2026-03-27 10:06:12)
- File:
-
- 1 edited
-
kernel/generic/src/ipc/kbox.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/ipc/kbox.c
r4f16db1 rd71b0de 242 242 } 243 243 244 kobject_t *phone_obj = kobject_get(TASK, phone_handle,245 KOBJECT_TYPE_PHONE);244 phone_t *phone = phone_from_kobject( 245 kobject_get(TASK, phone_handle, KOBJECT_TYPE_PHONE)); 246 246 /* Connect the newly allocated phone to the kbox */ 247 247 /* Hand over phone_obj's reference to ipc_phone_connect() */ 248 (void) ipc_phone_connect(phone _obj->phone, &task->kb.box);248 (void) ipc_phone_connect(phone, &task->kb.box); 249 249 250 250 mutex_unlock(&task->kb.cleanup_lock);
Note:
See TracChangeset
for help on using the changeset viewer.
