Changeset 02055415 in mainline for generic/src/console/kconsole.c


Ignore:
Timestamp:
2005-12-10T19:15:05Z (20 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a276c56
Parents:
f5acb62
Message:

ptlb command (currently usable on mips32 only).

File:
1 edited

Legend:

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

    rf5acb62 r02055415  
    4040#include <debug.h>
    4141#include <symtab.h>
     42
     43#include <mm/tlb_cmd.h>
    4244
    4345#define MAX_CMDLINE     256
     
    270272        if (!cmd_register(&halt_info))
    271273                panic("could not register command %s\n", halt_info.name);
     274
     275        spinlock_initialize(&desc_ptlb.lock, "kconsole_ptlb");
     276        link_initialize(&desc_ptlb.link);
     277        if (!cmd_register(&desc_ptlb))
     278                panic("could not register command %s\n", desc_ptlb.name);
    272279}
    273280
Note: See TracChangeset for help on using the changeset viewer.