Changeset 7f6e755 in mainline


Ignore:
Timestamp:
2006-04-09T15:33:38Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
602c9101
Parents:
016acbe
Message:

Replace list of all tasks with B+tree of all tasks.

Location:
generic
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • generic/include/proc/task.h

    r016acbe r7f6e755  
    3232#include <typedefs.h>
    3333#include <synch/spinlock.h>
     34#include <adt/btree.h>
    3435#include <adt/list.h>
    3536#include <ipc/ipc.h>
     
    4041        char *name;
    4142        link_t th_head;         /**< List of threads contained in this task. */
    42         link_t tasks_link;      /**< Link to other tasks within the system. */
    4343        as_t *as;               /**< Address space. */
    44         task_id_t taskid;           /**< Unique identity of task */
     44        task_id_t taskid;       /**< Unique identity of task */
    4545
    4646        /* IPC stuff */
     
    5151
    5252extern spinlock_t tasks_lock;
    53 extern link_t tasks_head;
     53extern btree_t tasks_btree;
    5454
    5555extern void task_init(void);
  • generic/src/proc/task.c

    r016acbe r7f6e755  
    3636#include <arch.h>
    3737#include <panic.h>
     38#include <adt/btree.h>
    3839#include <adt/list.h>
    3940#include <ipc/ipc.h>
     
    4344
    4445SPINLOCK_INITIALIZE(tasks_lock);
    45 LIST_INITIALIZE(tasks_head);
     46btree_t tasks_btree;
    4647static task_id_t task_counter = 0;
    4748
     
    5455{
    5556        TASK = NULL;
     57        btree_create(&tasks_btree);
    5658}
    5759
     
    7779        spinlock_initialize(&ta->lock, "task_ta_lock");
    7880        list_initialize(&ta->th_head);
    79         list_initialize(&ta->tasks_link);
    8081        ta->as = as;
    8182        ta->name = name;
     
    9394
    9495        ta->taskid = ++task_counter;
    95         list_append(&ta->tasks_link, &tasks_head);
     96        btree_insert(&tasks_btree, (__native) ta, (void *) ta, NULL);
    9697
    9798        spinlock_unlock(&tasks_lock);
     
    152153{
    153154        link_t *cur;
    154         task_t *t;
    155155        ipl_t ipl;
    156         int i;
    157156       
    158157        /* Messing with thread structures, avoid deadlock */
     
    160159        spinlock_lock(&tasks_lock);
    161160
    162         for (cur=tasks_head.next; cur!=&tasks_head; cur=cur->next) {
    163                 t = list_get_instance(cur, task_t, tasks_link);
    164                 spinlock_lock(&t->lock);
    165                 printf("%s: address=%P, taskid=%Q, as=%P, ActiveCalls: %d",
    166                         t->name, t, t->taskid, t->as, atomic_get(&t->active_calls));
    167                 for (i=0; i < IPC_MAX_PHONES; i++) {
    168                         if (t->phones[i].callee)
    169                                 printf(" Ph(%d): %P ", i,t->phones[i].callee);
     161        for (cur = tasks_btree.leaf_head.next; cur != &tasks_btree.leaf_head; cur = cur->next) {
     162                btree_node_t *node;
     163                int i;
     164               
     165                node = list_get_instance(cur, btree_node_t, leaf_link);
     166                for (i = 0; i < node->keys; i++) {
     167                        task_t *t;
     168                        int j;
     169
     170                        t = (task_t *) node->value[i];
     171               
     172                        spinlock_lock(&t->lock);
     173                        printf("%s: address=%P, taskid=%Q, as=%P, ActiveCalls: %d",
     174                                t->name, t, t->taskid, t->as, atomic_get(&t->active_calls));
     175                        for (j=0; j < IPC_MAX_PHONES; j++) {
     176                                if (t->phones[j].callee)
     177                                        printf(" Ph(%d): %P ", j, t->phones[j].callee);
     178                        }
     179                        printf("\n");
     180                        spinlock_unlock(&t->lock);
    170181                }
    171                 printf("\n");
    172                 spinlock_unlock(&t->lock);
    173182        }
    174183
Note: See TracChangeset for help on using the changeset viewer.