Changeset e090e1bc in mainline for generic/src


Ignore:
Timestamp:
2006-06-05T11:01:29Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b91bb65
Parents:
214c5a0
Message:

Make ktaskclnp call ipc_cleanup and futex_cleanup.

Location:
generic/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • generic/src/proc/task.c

    r214c5a0 re090e1bc  
    356356         */
    357357       
    358         /*
    359          * TODO:
    360          * Close IPC communication and release used futexes.
    361          * When this thread exits, the task refcount drops to zero and the task structure is
    362          * cleaned.
    363          */
    364 }
     358        ipc_cleanup();
     359        futex_cleanup();
     360}
  • generic/src/synch/futex.c

    r214c5a0 re090e1bc  
    304304        free(futex);
    305305}
     306
     307/** Remove references from futexes known to the current task. */
     308void futex_cleanup(void)
     309{
     310}
Note: See TracChangeset for help on using the changeset viewer.