ch.registerCommand("printtags", new BasicCommand("print tags profile", "") {
public int executeCommand(CommandContext context) {
Profiler profiler = cpu.getProfiler();
SimpleProfiler sprof = (SimpleProfiler) profiler;
sprof.printTagProfile(context.out);
return 0;
}
});