Changeset 91c78c9 in mainline for generic/include/console/kconsole.h


Ignore:
Timestamp:
2005-12-10T16:02:39Z (20 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
adb2ebf8
Parents:
5bb20ec
Message:

String constants without spaces are now supported by call commands.
For more we would need some lexer.
The call? commands are not compatibile with stdarg functions on AMD
architectures, because of the calling sequence.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • generic/include/console/kconsole.h

    r5bb20ec r91c78c9  
    3737        ARG_TYPE_INVALID = 0,
    3838        ARG_TYPE_INT,
    39         ARG_TYPE_STRING
     39        ARG_TYPE_STRING,
     40        ARG_TYPE_VAR      /**< Variable type - either symbol or string */
    4041};
    4142
     
    4647        size_t len;                     /**< Size of the buffer. */
    4748        __native intval;                /**< Integer value */
     49        cmd_arg_type_t vartype;         /**< Resulting type of variable arg */
    4850};
    4951
Note: See TracChangeset for help on using the changeset viewer.