1# Task
2
3## NAME
4
5Task - "Runnable" subclass of kernel objects (threads, processes, and jobs)
6
7## SYNOPSIS
8
9[Threads](thread.md), [processes](process.md), and [jobs](job.md) objects
10are all tasks. They share the ability to be suspended, resumed, and
11killed.
12
13## DESCRIPTION
14
15TODO
16
17## SYSCALLS
18
19+ [task_resume](../syscalls/task_resume.md) - cause a suspended task to continue running
20+ [task_bind_exception_port](../syscalls/task_bind_exception_port.md) - attach an exception port to a task
21+ [task_kill](../syscalls/task_kill.md) - cause a task to stop running
22