Changeset 9179d0a in mainline for generic/src/synch/futex.c


Ignore:
Timestamp:
2006-04-27T17:13:49Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
040e4e9
Parents:
eaa202a
Message:

Add some @file doxygen comments and improve already existing comments.

File:
1 edited

Legend:

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

    reaa202a r9179d0a  
    9494 * @param uaddr Userspace address of the futex counter.
    9595 * @param usec If non-zero, number of microseconds this thread is willing to sleep.
    96  * @param trydown If @usec is zero and trydown is non-zero, conditional operation will be attempted.
     96 * @param trydown If usec is zero and trydown is non-zero, conditional operation will be attempted.
    9797 *
    9898 * @return One of ESYNCH_TIMEOUT, ESYNCH_OK_ATOMIC and ESYNCH_OK_BLOCKED. See synch.h.
     
    219219/** Compute hash index into futex hash table.
    220220 *
    221  * @param key Address where the @key (i.e. physical address of futex counter) is stored.
     221 * @param key Address where the key (i.e. physical address of futex counter) is stored.
    222222 *
    223223 * @return Index into futex hash table.
     
    232232 * @param key Address where the key (i.e. physical address of futex counter) is stored.
    233233 *
    234  * @return True if the item matches the @key. False otherwise.
     234 * @return True if the item matches the key. False otherwise.
    235235 */
    236236bool futex_ht_compare(__native *key, count_t keys, link_t *item)
Note: See TracChangeset for help on using the changeset viewer.