Changeset 26f9943 in mainline


Ignore:
Timestamp:
2005-10-11T21:00:34Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
874e312a
Parents:
a783ca4
Message:

Doxygen comments fixes.

Location:
src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/debug/print.c

    ra783ca4 r26f9943  
    146146 *
    147147 * Print characters from str using putchar() until
    148  * \x00 character is reached.
     148 * \\0 character is reached.
    149149 *
    150150 * @param str Characters to print.
     
    210210 * Print text formatted according the fmt parameter
    211211 * and variant arguments. Each formatting directive
    212  * begins with % (percentage) character and one of the
     212 * begins with \% (percentage) character and one of the
    213213 * following character:
    214214 *
    215  * %    Prints the percentage character.
     215 * \%    Prints the percentage character.
     216 *
    216217 * s    The next variant argument is treated as char*
    217218 *      and printed as a NULL terminated string.
     219 *
    218220 * c    The next variant argument is treated as a single char.
     221 *
    219222 * p    The next variant argument is treated as a maximum
    220223 *      bit-width integer with respect to architecture
    221224 *      and printed in full hexadecimal width.
     225 *
    222226 * P    As with 'p', but '0x' is prefixed.
     227 *
    223228 * q    The next variant argument is treated as a 64b integer
    224229 *      and printed in full hexadecimal width.
     230 *
    225231 * Q    As with 'q', but '0x' is prefixed.
     232 *
    226233 * l    The next variant argument is treated as a 32b integer
    227234 *      and printed in full hexadecimal width.
     235 *
    228236 * L    As with 'l', but '0x' is prefixed.
     237 *
    229238 * w    The next variant argument is treated as a 16b integer
    230239 *      and printed in full hexadecimal width.
     240 *
    231241 * W    As with 'w', but '0x' is prefixed.
     242 *
    232243 * b    The next variant argument is treated as a 8b integer
    233244 *      and printed in full hexadecimal width.
    234  * N    As with 'b', but '0x' is prefixed.
     245 *
     246 * B    As with 'b', but '0x' is prefixed.
     247 *
    235248 * d    The next variant argument is treated as integer
    236249 *      and printed in standard decimal format (only significant
    237250 *      digits).
     251 *
    238252 * x    The next variant argument is treated as integer
    239253 *      and printed in standard hexadecimal format (only significant
    240254 *      digits).
     255 *
    241256 * X    As with 'x', but '0x' is prefixed.
     257 *
    242258 * .    The decimal number following period will be treated as precision
    243259 *      for printing floating point numbers. One of 'e', 'E', 'f' or 'F'
    244260 *      must follow.
     261 *
    245262 * e    The next variant argument is treated as double precision float
    246263 *      and printed in exponent notation with only one digit before decimal point
    247264 *      in specified precision. The exponent sign is printed as 'e'.
     265 *
    248266 * E    As with 'e', but the exponent sign is printed as 'E'.
     267 *
    249268 * f    The next variant argument is treated as double precision float
    250269 *      and printed in decimal notation in specified precision.
     270 *
    251271 * F    As with 'f'.
    252272 *
     
    255275 *
    256276 * @param fmt Formatting NULL terminated string.
    257  *
    258277 */
    259278void printf(const char *fmt, ...)
  • src/synch/waitq.c

    ra783ca4 r26f9943  
    112112 * @param nonblocking Blocking vs. non-blocking operation mode switch.
    113113 *
    114  * If usec is greater than zero, regardless of the value of @nonblocking,
     114 * If usec is greater than zero, regardless of the value of nonblocking,
    115115 * the call will not return until either timeout or wakeup comes.
    116116 *
Note: See TracChangeset for help on using the changeset viewer.