Changeset abbc16e in mainline for generic/src


Ignore:
Timestamp:
2006-06-16T11:17:54Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
62939f7
Parents:
b6529ae
Message:

Fix some broken doxygen comments.

Location:
generic/src
Files:
11 edited

Legend:

Unmodified
Added
Removed
  • generic/src/adt/btree.c

    rb6529ae rabbc16e  
    215215/** Remove B-tree node.
    216216 *
    217  * @param B-tree.
     217 * @param t B-tree.
    218218 * @param key Key to be removed from the B-tree along with its associated value.
    219219 * @param leaf_node If not NULL, pointer to the leaf node where the key is found.
     
    235235/** Recursively remove B-tree node.
    236236 *
    237  * @param B-tree.
     237 * @param t B-tree.
    238238 * @param key Key to be removed from the B-tree along with its associated value.
    239239 * @param node Node where the key being removed resides.
     
    903903/** Rotate in a key from the right sibling or from the index node, if this operation can be done.
    904904 *
    905  * @param rnode Node into which to add key from its right sibling or from the index node.
     905 * @param lnode Node into which to add key from its right sibling or from the index node.
    906906 *
    907907 * @return True if the rotation was performed, false otherwise.
  • generic/src/adt/hash_table.c

    rb6529ae rabbc16e  
    7878 *
    7979 * @param h Hash table.
    80  * @param hey Array of all keys necessary to compute hash index.
     80 * @param key Array of all keys necessary to compute hash index.
    8181 * @param item Item to be inserted into the hash table.
    8282 */
  • generic/src/console/console.c

    rb6529ae rabbc16e  
    118118 * @param chardev Character device.
    119119 * @param buf Buffer where to store string terminated by '\0'.
    120  * @param len Size of the buffer.
     120 * @param buflen Size of the buffer.
    121121 *
    122122 * @return Number of characters read.
  • generic/src/console/kconsole.c

    rb6529ae rabbc16e  
    404404/** Kernel console managing thread.
    405405 *
    406  * @param arg Not used.
     406 * @param prompt Kernel console prompt (e.g kconsole/panic).
    407407 */
    408408void kconsole(void *prompt)
  • generic/src/ddi/ddi.c

    rb6529ae rabbc16e  
    169169/** Wrapper for SYS_ENABLE_IOSPACE syscall.
    170170 *
    171  * @param User space address of DDI argument structure.
     171 * @param uspace_io_arg User space address of DDI argument structure.
    172172 *
    173173 * @return 0 on success, otherwise it returns error code found in errno.h
  • generic/src/ipc/ipc.c

    rb6529ae rabbc16e  
    210210/** Send a asynchronous request using phone to answerbox
    211211 *
    212  * @param phone Phone connected to answerbox
    213  * @param request Request to be sent
     212 * @param phone Phone connected to answerbox.
     213 * @param call Structure representing the call.
    214214 */
    215215int ipc_call(phone_t *phone, call_t *call)
  • generic/src/lib/func.c

    rb6529ae rabbc16e  
    136136 *
    137137 * @param src Source string.
    138  * @param dst Destination buffer.
     138 * @param dest Destination buffer.
    139139 * @param len Size of destination buffer.
    140140 */
  • generic/src/mm/buddy.c

    rb6529ae rabbc16e  
    287287 *
    288288 * @param b Pointer to buddy system
    289  * @param es Element size
     289 * @param elem_size Element size
    290290 */
    291291void buddy_system_structure_print(buddy_system_t *b, size_t elem_size) {
  • generic/src/mm/frame.c

    rb6529ae rabbc16e  
    996996 * If it drops to zero, move the frame structure to free list.
    997997 *
    998  * @param frame Frame number to be freed.
     998 * @param pfn Frame number of the frame to be freed.
    999999 */
    10001000void frame_free(pfn_t pfn)
     
    10221022 * increment frame reference count.
    10231023 *
    1024  * @param frame Frame no to be freed.
     1024 * @param pfn Frame number of the frame to be freed.
    10251025 */
    10261026void frame_reference_add(pfn_t pfn)
     
    11131113}
    11141114
    1115 /** Prints zone details
    1116  *
    1117  * @param base Zone base address OR zone number
     1115/** Prints zone details.
     1116 *
     1117 * @param num Zone base address or zone number.
    11181118 */
    11191119void zone_print_one(int num) {
  • generic/src/proc/scheduler.c

    rb6529ae rabbc16e  
    254254 * When the function decides to relink rq's, it reconnects
    255255 * respective pointers so that in result threads with 'pri'
    256  * greater or equal @start are moved to a higher-priority queue.
     256 * greater or equal start are moved to a higher-priority queue.
    257257 *
    258258 * @param start Threshold priority.
  • generic/src/syscall/copy.c

    rb6529ae rabbc16e  
    9595 *
    9696 * @param uspace_dst Destination userspace address.
    97  * @param uspace_src Source kernel address.
     97 * @param src Source kernel address.
    9898 * @param size Size of the data to be copied.
    9999 *
Note: See TracChangeset for help on using the changeset viewer.