Changeset 096ba7a in mainline
- Timestamp:
- 2006-06-16T12:07:17Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f5e4830
- Parents:
- 830ac99
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
fb/fb.c
r830ac99 r096ba7a 208 208 /** Put pixel into viewport 209 209 * 210 * @param vp Viewport identification210 * @param vport Viewport identification 211 211 * @param x X coord relative to viewport 212 212 * @param y Y coord relative to viewport … … 284 284 /** Scroll unbuffered viewport up/down 285 285 * 286 * @param vp Viewport to scroll287 * @param rows Positive number - scroll up, negative - scroll down286 * @param vport Viewport to scroll 287 * @param lines Positive number - scroll up, negative - scroll down 288 288 */ 289 289 static void scroll_port_nodb(viewport_t *vport, int lines) … … 374 374 /** Draw character at given position 375 375 * 376 * @param vp Viewport where the character is printed376 * @param vport Viewport where the character is printed 377 377 * @param sx Coordinates of top-left of the character 378 378 * @param sy Coordinates of top-left of the character … … 459 459 * 460 460 * @param addr Address of theframebuffer 461 * @param x 462 * @param y 461 * @param xres Screen width in pixels 462 * @param yres Screen height in pixels 463 463 * @param bpp Bits per pixel (8, 16, 24, 32) 464 464 * @param scan Bytes per one scanline … … 530 530 /** Draw character at given position relative to viewport 531 531 * 532 * @param vp Viewport identification532 * @param vport Viewport identification 533 533 * @param c Character to print 534 534 * @param row Screen position relative to viewport … … 561 561 /** Draw text data to viewport 562 562 * 563 * @param vp Viewport id563 * @param vport Viewport id 564 564 * @param data Text data fitting exactly into viewport 565 565 */ -
fb/ppm.c
r830ac99 r096ba7a 76 76 * @param data Pointer to PPM data 77 77 * @param datasz Maximum data size 78 * @param x Coordinate of upper left corner79 * @param y Coordinate of upper left corner78 * @param sx Coordinate of upper left corner 79 * @param sy Coordinate of upper left corner 80 80 * @param maxwidth Maximum allowed width for picture 81 81 * @param maxheight Maximum allowed height for picture … … 85 85 unsigned int sy, 86 86 unsigned int maxwidth, unsigned int maxheight, 87 putpixel_cb_t putpixel, void *vport)87 putpixel_cb_t putpixel, void *vport) 88 88 { 89 89 unsigned int width, height; -
libc/generic/ipc.c
r830ac99 r096ba7a 372 372 * 373 373 * - dispatch ASYNC reoutines in the background 374 * 374 375 * @param call Space where the message is stored 375 376 * @param usec Timeout in microseconds. … … 390 391 * 391 392 * - dispatch ASYNC reoutines in the background 393 * 392 394 * @param call Space where the message is stored 393 395 * @return Callid of the answer. -
libc/generic/libadt/hash_table.c
r830ac99 r096ba7a 80 80 * 81 81 * @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. 83 83 * @param item Item to be inserted into the hash table. 84 84 */ -
libc/generic/psthread.c
r830ac99 r096ba7a 110 110 * held. 111 111 * 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. 115 113 * @return 0 if there is no ready pseudo thread, 1 otherwise. 116 114 */ -
libc/generic/thread.c
r830ac99 r096ba7a 118 118 * @param name Symbolic name of the thread. 119 119 * 120 * @ paramTID of the new thread on success or -1 on failure.120 * @return TID of the new thread on success or -1 on failure. 121 121 */ 122 122 int thread_create(void (* function)(void *), void *arg, char *name) … … 146 146 /** Terminate current thread. 147 147 * 148 * @param stat Exit status. Currently not used.148 * @param status Exit status. Currently not used. 149 149 */ 150 150 void thread_exit(int status)
Note:
See TracChangeset
for help on using the changeset viewer.