Changeset 33adc6ce in mainline for kernel/generic/include


Ignore:
Timestamp:
2009-11-21T10:26:29Z (16 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
fd1210a
Parents:
c70ce74
Message:

Introduce the per-task list of active synchronous answerboxes and make
ipc_cleanup() aware of it.

Location:
kernel/generic/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/ipc/ipc.h

    rc70ce74 r33adc6ce  
    264264
    265265        waitq_t wq;
     266
     267        /** Linkage for the list of task's synchronous answerboxes. */
     268        link_t sync_box_link;
    266269
    267270        /** Phones connected to this answerbox. */
  • kernel/generic/include/proc/task.h

    rc70ce74 r33adc6ce  
    9898         */
    9999        atomic_t active_calls;
     100        /** List of synchronous answerboxes. */
     101        link_t sync_box_head;
    100102
    101103#ifdef CONFIG_UDEBUG
Note: See TracChangeset for help on using the changeset viewer.