Ignore:
File:
1 edited

Legend:

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

    r0b5203b raae365bc  
    4242#include <synch/spinlock.h>
    4343#include <synch/mutex.h>
     44#include <synch/futex.h>
    4445#include <adt/list.h>
    4546#include <adt/odict.h>
     
    127128        task_arch_t arch;
    128129
     130        /** Serializes access to futex_list.*/
     131        SPINLOCK_DECLARE(futex_list_lock);
     132        /** List of all futexes accesses by this task. */
     133        list_t futex_list;
     134
    129135        /** Accumulated accounting. */
    130136        uint64_t ucycles;
Note: See TracChangeset for help on using the changeset viewer.