Rev 1787 | Rev 1888 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1787 | Rev 1820 | ||
---|---|---|---|
Line 24... | Line 24... | ||
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | */ |
27 | */ |
28 | 28 | ||
29 | /** @addtogroup genericproc |
29 | /** @addtogroup genericproc |
30 | * @{ |
30 | * @{ |
31 | */ |
31 | */ |
32 | /** @file |
32 | /** @file |
33 | */ |
33 | */ |
34 | 34 | ||
Line 56... | Line 56... | ||
56 | char *name; |
56 | char *name; |
57 | thread_t *main_thread; /**< Pointer to the main thread. */ |
57 | thread_t *main_thread; /**< Pointer to the main thread. */ |
58 | link_t th_head; /**< List of threads contained in this task. */ |
58 | link_t th_head; /**< List of threads contained in this task. */ |
59 | as_t *as; /**< Address space. */ |
59 | as_t *as; /**< Address space. */ |
60 | task_id_t taskid; /**< Unique identity of task */ |
60 | task_id_t taskid; /**< Unique identity of task */ |
- | 61 | context_id_t context; /**< Task security context */ |
|
61 | 62 | ||
62 | /** If this is true, new threads can become part of the task. */ |
63 | /** If this is true, new threads can become part of the task. */ |
63 | bool accept_new_threads; |
64 | bool accept_new_threads; |
64 | 65 | ||
65 | count_t refcount; /**< Number of references (i.e. threads). */ |
66 | count_t refcount; /**< Number of references (i.e. threads). */ |