Changeset efdfebc in mainline for kernel/generic/src/proc/task.c


Ignore:
Timestamp:
2012-11-06T21:03:44Z (11 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
338810f
Parents:
de73242 (diff), 94795812 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/proc/task.c

    rde73242 refdfebc  
    156156       
    157157        list_initialize(&task->threads);
    158         list_initialize(&task->sync_boxes);
    159158       
    160159        ipc_answerbox_init(&task->answerbox, task);
     
    162161        size_t i;
    163162        for (i = 0; i < IPC_MAX_PHONES; i++)
    164                 ipc_phone_init(&task->phones[i]);
     163                ipc_phone_init(&task->phones[i], task);
     164
     165        spinlock_initialize(&task->active_calls_lock, "active_calls_lock");
     166        list_initialize(&task->active_calls);
    165167       
    166168#ifdef CONFIG_UDEBUG
     
    204206        event_task_init(task);
    205207       
     208        task->answerbox.active = true;
     209
    206210#ifdef CONFIG_UDEBUG
    207211        /* Init debugging stuff */
     
    209213       
    210214        /* Init kbox stuff */
     215        task->kb.box.active = true;
    211216        task->kb.finished = false;
    212217#endif
     
    214219        if ((ipc_phone_0) &&
    215220            (container_check(ipc_phone_0->task->container, task->container)))
    216                 ipc_phone_connect(&task->phones[0], ipc_phone_0);
     221                (void) ipc_phone_connect(&task->phones[0], ipc_phone_0);
    217222       
    218223        btree_create(&task->futexes);
Note: See TracChangeset for help on using the changeset viewer.