Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1583 → Rev 1582

/kernel/trunk/generic/src/proc/task.c
355,6 → 355,10
* and no new threads can be created.
*/
ipc_cleanup();
futex_cleanup();
/*
* TODO:
* Close IPC communication and release used futexes.
* When this thread exits, the task refcount drops to zero and the task structure is
* cleaned.
*/
}
/kernel/trunk/generic/src/synch/futex.c
303,8 → 303,3
futex = hash_table_get_instance(item, futex_t, ht_link);
free(futex);
}
 
/** Remove references from futexes known to the current task. */
void futex_cleanup(void)
{
}