- Timestamp:
- 2005-12-10T19:15:05Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a276c56
- Parents:
- f5acb62
- Location:
- generic
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/console/kconsole.c
rf5acb62 r02055415 40 40 #include <debug.h> 41 41 #include <symtab.h> 42 43 #include <mm/tlb_cmd.h> 42 44 43 45 #define MAX_CMDLINE 256 … … 270 272 if (!cmd_register(&halt_info)) 271 273 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); 272 279 } 273 280 -
generic/src/mm/tlb.c
rf5acb62 r02055415 36 36 #include <config.h> 37 37 #include <arch.h> 38 #include <panic.h> 38 39 39 40 #ifdef CONFIG_SMP
Note:
See TracChangeset
for help on using the changeset viewer.