summaryrefslogtreecommitdiff
path: root/sys/include
diff options
context:
space:
mode:
Diffstat (limited to 'sys/include')
-rw-r--r--sys/include/sys/proc.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/include/sys/proc.h b/sys/include/sys/proc.h
index 89fe638..809ee23 100644
--- a/sys/include/sys/proc.h
+++ b/sys/include/sys/proc.h
@@ -122,8 +122,10 @@ struct proc {
#define PROC_PINNED BIT(7) /* Pinned to CPU */
struct proc *this_td(void);
+struct proc *td_copy(struct proc *td);
struct proc *get_child(struct proc *cur, pid_t pid);
+int proc_init(struct proc *td, struct proc *parent);
void proc_pin(struct proc *td, affinity_t cpu);
void proc_unpin(struct proc *td);