Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/synch/futex.c

    rc0699467 r0ff03f3  
    3939#include <synch/mutex.h>
    4040#include <synch/spinlock.h>
     41#include <synch/synch.h>
    4142#include <mm/frame.h>
    4243#include <mm/page.h>
     
    271272void futex_cleanup(void)
    272273{
     274        link_t *cur;
     275       
    273276        mutex_lock(&futex_ht_lock);
    274277        mutex_lock(&TASK->futexes_lock);
    275278
    276         list_foreach(TASK->futexes.leaf_list, cur) {
     279        for (cur = TASK->futexes.leaf_head.next;
     280            cur != &TASK->futexes.leaf_head; cur = cur->next) {
    277281                btree_node_t *node;
    278282                unsigned int i;
Note: See TracChangeset for help on using the changeset viewer.