Changeset 096ba7a in mainline for libc


Ignore:
Timestamp:
2006-06-16T12:07:17Z (20 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f5e4830
Parents:
830ac99
Message:

Fix some broken doxygen comments.

Location:
libc/generic
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • libc/generic/ipc.c

    r830ac99 r096ba7a  
    372372 *
    373373 * - dispatch ASYNC reoutines in the background
     374 *
    374375 * @param call Space where the message is stored
    375376 * @param usec Timeout in microseconds.
     
    390391 *
    391392 * - dispatch ASYNC reoutines in the background
     393 *
    392394 * @param call Space where the message is stored
    393395 * @return Callid of the answer.
  • libc/generic/libadt/hash_table.c

    r830ac99 r096ba7a  
    8080 *
    8181 * @param h Hash table.
    82  * @param hey Array of all keys necessary to compute hash index.
     82 * @param key Array of all keys necessary to compute hash index.
    8383 * @param item Item to be inserted into the hash table.
    8484 */
  • libc/generic/psthread.c

    r830ac99 r096ba7a  
    110110 * held.
    111111 *
    112  * @param tomanager If true, we are switching to next ready manager thread
    113  *                  (if none is found, thread is exited)
    114  * @param frommanager If true, we are switching from manager thread
     112 * @param ctype Type of switch.
    115113 * @return 0 if there is no ready pseudo thread, 1 otherwise.
    116114 */
  • libc/generic/thread.c

    r830ac99 r096ba7a  
    118118 * @param name Symbolic name of the thread.
    119119 *
    120  * @param TID of the new thread on success or -1 on failure.
     120 * @return TID of the new thread on success or -1 on failure.
    121121 */
    122122int thread_create(void (* function)(void *), void *arg, char *name)
     
    146146/** Terminate current thread.
    147147 *
    148  * @param stat Exit status. Currently not used.
     148 * @param status Exit status. Currently not used.
    149149 */
    150150void thread_exit(int status)
Note: See TracChangeset for help on using the changeset viewer.