Changeset 947ab77e in mainline for kernel/generic/include/proc/task.h


Ignore:
Timestamp:
2018-11-07T20:41:51Z (6 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
aae365bc
Parents:
bed67f2
Message:

Stop using CHT in futexes

File:
1 edited

Legend:

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

    rbed67f2 r947ab77e  
    130130        task_arch_t arch;
    131131
    132         struct futex_cache {
    133                 /** CHT mapping virtual addresses of futex variables to futex objects.*/
    134                 cht_t ht;
    135                 /** Serializes access to futex_list.*/
    136                 SPINLOCK_DECLARE(list_lock);
    137                 /** List of all futexes accesses by this task. */
    138                 list_t list;
    139                 work_t destroy_work;
    140         } *futexes;
     132        /** Serializes access to futex_list.*/
     133        SPINLOCK_DECLARE(futex_list_lock);
     134        /** List of all futexes accesses by this task. */
     135        list_t futex_list;
    141136
    142137        /** Accumulated accounting. */
Note: See TracChangeset for help on using the changeset viewer.