More style fixes. Sorry, missed those before.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30027 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2009-04-08 13:15:16 +00:00
parent c970c6e8f3
commit 777ae2fbb5
+6 -3
View File
@@ -218,8 +218,9 @@ gdb_parse_command(void)
((unsigned)(&__bss_start)) - 0x80000000); ((unsigned)(&__bss_start)) - 0x80000000);
} else } else
gdb_reply("ENS"); gdb_reply("ENS");
}
break; break;
}
case '?': case '?':
// command '?' is used for retrieving the signal // command '?' is used for retrieving the signal
@@ -250,8 +251,9 @@ gdb_parse_command(void)
// dump in *big endian* format. // dump in *big endian* format.
cpu = smp_get_current_cpu(); cpu = smp_get_current_cpu();
gdb_regreply(dbg_register_file[cpu], 14); gdb_regreply(dbg_register_file[cpu], 14);
}
break; break;
}
case 'm': case 'm':
{ {
@@ -290,8 +292,9 @@ gdb_parse_command(void)
gdb_reply("E02"); gdb_reply("E02");
else else
gdb_memreply(sSafeMemory, len); gdb_memreply(sSafeMemory, len);
}
break; break;
}
case 'k': case 'k':
// Command 'k' actual semantics is 'kill the damn thing'. // Command 'k' actual semantics is 'kill the damn thing'.