Changeset 096ba7a in mainline


Ignore:
Timestamp:
2006-06-16T12:07:17Z (18 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.

Files:
6 edited

Legend:

Unmodified
Added
Removed
  • fb/fb.c

    r830ac99 r096ba7a  
    208208/** Put pixel into viewport
    209209 *
    210  * @param vp Viewport identification
     210 * @param vport Viewport identification
    211211 * @param x X coord relative to viewport
    212212 * @param y Y coord relative to viewport
     
    284284/** Scroll unbuffered viewport up/down
    285285 *
    286  * @param vp Viewport to scroll
    287  * @param rows Positive number - scroll up, negative - scroll down
     286 * @param vport Viewport to scroll
     287 * @param lines Positive number - scroll up, negative - scroll down
    288288 */
    289289static void scroll_port_nodb(viewport_t *vport, int lines)
     
    374374/** Draw character at given position
    375375 *
    376  * @param vp Viewport where the character is printed
     376 * @param vport Viewport where the character is printed
    377377 * @param sx Coordinates of top-left of the character
    378378 * @param sy Coordinates of top-left of the character
     
    459459 *
    460460 * @param addr Address of theframebuffer
    461  * @param x    Screen width in pixels
    462  * @param y    Screen height in pixels
     461 * @param xres Screen width in pixels
     462 * @param yres Screen height in pixels
    463463 * @param bpp  Bits per pixel (8, 16, 24, 32)
    464464 * @param scan Bytes per one scanline
     
    530530/** Draw character at given position relative to viewport
    531531 *
    532  * @param vp Viewport identification
     532 * @param vport Viewport identification
    533533 * @param c Character to print
    534534 * @param row Screen position relative to viewport
     
    561561/** Draw text data to viewport
    562562 *
    563  * @param vp Viewport id
     563 * @param vport Viewport id
    564564 * @param data Text data fitting exactly into viewport
    565565 */
  • fb/ppm.c

    r830ac99 r096ba7a  
    7676 * @param data Pointer to PPM data
    7777 * @param datasz Maximum data size
    78  * @param x Coordinate of upper left corner
    79  * @param y Coordinate of upper left corner
     78 * @param sx Coordinate of upper left corner
     79 * @param sy Coordinate of upper left corner
    8080 * @param maxwidth Maximum allowed width for picture
    8181 * @param maxheight Maximum allowed height for picture
     
    8585             unsigned int sy,
    8686             unsigned int maxwidth, unsigned int maxheight,
    87              putpixel_cb_t putpixel,void *vport)
     87             putpixel_cb_t putpixel, void *vport)
    8888{
    8989        unsigned int width, height;
  • 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.