Changeset b45c443 in mainline for generic/src/console/cmd.c


Ignore:
Timestamp:
2006-06-13T14:26:44Z (19 years ago)
Author:
Josef Cejka <malyzelenyhnus@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3222efd
Parents:
279952c
Message:

Kernel doxygen comments updated.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • generic/src/console/cmd.c

    r279952c rb45c443  
    2525 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
    2626 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     27 */
     28
     29 /** @addtogroup genericconsole
     30 * @{
    2731 */
    2832
     
    6165#include <ipc/ipc.h>
    6266
    63 /** Data and methods for 'help' command. */
     67/* Data and methods for 'help' command. */
    6468static int cmd_help(cmd_arg_t *argv);
    6569static cmd_info_t help_info = {
     
    8488};
    8589
    86 /** Data and methods for 'description' command. */
     90/* Data and methods for 'description' command. */
    8791static int cmd_desc(cmd_arg_t *argv);
    8892static void desc_help(void);
     
    102106};
    103107
    104 /** Data and methods for 'symaddr' command. */
     108/* Data and methods for 'symaddr' command. */
    105109static int cmd_symaddr(cmd_arg_t *argv);
    106110static char symaddr_buf[MAX_CMDLINE+1];
     
    138142};
    139143
    140 /** Data and methods for 'call0' command. */
     144/* Data and methods for 'call0' command. */
    141145static char call0_buf[MAX_CMDLINE+1];
    142146static char carg1_buf[MAX_CMDLINE+1];
     
    158162};
    159163
    160 /** Data and methods for 'call1' command. */
     164/* Data and methods for 'call1' command. */
    161165static int cmd_call1(cmd_arg_t *argv);
    162166static cmd_arg_t call1_argv[] = {
     
    180184};
    181185
    182 /** Data and methods for 'call2' command. */
     186/* Data and methods for 'call2' command. */
    183187static int cmd_call2(cmd_arg_t *argv);
    184188static cmd_arg_t call2_argv[] = {
     
    207211};
    208212
    209 /** Data and methods for 'call3' command. */
     213/* Data and methods for 'call3' command. */
    210214static int cmd_call3(cmd_arg_t *argv);
    211215static cmd_arg_t call3_argv[] = {
     
    240244};
    241245
    242 /** Data and methods for 'halt' command. */
     246/* Data and methods for 'halt' command. */
    243247static int cmd_halt(cmd_arg_t *argv);
    244248static cmd_info_t halt_info = {
     
    249253};
    250254
    251 /** Data and methods for 'tlb' command. */
     255/* Data and methods for 'tlb' command. */
    252256static int cmd_tlb(cmd_arg_t *argv);
    253257cmd_info_t tlb_info = {
     
    293297};
    294298
    295 /** Data and methods for 'zones' command */
     299/* Data and methods for 'zones' command */
    296300static int cmd_zones(cmd_arg_t *argv);
    297301static cmd_info_t zones_info = {
     
    302306};
    303307
    304 /** Data and methods for 'ipc_task' command */
     308/* Data and methods for 'ipc_task' command */
    305309static int cmd_ipc_task(cmd_arg_t *argv);
    306310static cmd_arg_t ipc_task_argv = {
     
    315319};
    316320
    317 /** Data and methods for 'zone' command */
     321/* Data and methods for 'zone' command */
    318322static int cmd_zone(cmd_arg_t *argv);
    319323static cmd_arg_t zone_argv = {
     
    329333};
    330334
    331 /** Data and methods for 'cpus' command. */
     335/* Data and methods for 'cpus' command. */
    332336static int cmd_cpus(cmd_arg_t *argv);
    333337cmd_info_t cpus_info = {
     
    340344};
    341345
    342 /** Data and methods for 'version' command. */
     346/* Data and methods for 'version' command. */
    343347static int cmd_version(cmd_arg_t *argv);
    344348cmd_info_t version_info = {
     
    800804        return 1;
    801805}
     806
     807 /** @}
     808 */
     809
Note: See TracChangeset for help on using the changeset viewer.