-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorphanage.c
More file actions
58 lines (45 loc) · 1.21 KB
/
Copy pathorphanage.c
File metadata and controls
58 lines (45 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/* SPDX-License-Identifier: copyleft-next-0.3.1 */
/* Copyright 2024, Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
#include <kmi/bkl.h>
#include <kmi/assert.h>
#include <kmi/orphanage.h>
#include <arch/proc.h>
/**
* @file orphanage.c
*
* Stuff related to orphaned threads implementation.
*/
bool orphan(struct tcb *t)
{
return is_set(t->state, TCB_ORPHAN);
}
void orphanize(struct tcb *t)
{
set_bit(t->state, TCB_ORPHAN);
}
void unorphanize(struct tcb *t)
{
assert(!is_rpc(t));
/* attach to init process */
struct tcb *init = get_tcb(1);
reference_thread(init);
reset_rpc_stack(t);
id_t old_rid = t->rid;
t->rid = 1;
t->pid = 1;
t->eid = 1;
clone_uvmem(init->proc.vmem, t->rpc.vmem);
use_vmem(t->rpc.vmem);
assert(init->callback);
set_ret4(t, 0, t->tid, SYS_USER_ORPHANED, old_rid);
set_return(t, init->callback);
t->callback = init->callback;
/** @todo release irqs, here or later? Currently leaning towards later
* as they don't really take up any resources and the implementation
* doesn't make it too easy to search for a specific owner, we can just
* discard the IRQ if it turns out that the owner has been orphaned by
* that point. */
bkl_unlock();
ret_userspace_fast();
unreachable();
}