nemiver r926 - in trunk: . src/dbgengine
- From: dodji svn gnome org
- To: svn-commits-list gnome org
- Subject: nemiver r926 - in trunk: . src/dbgengine
- Date: Mon, 8 Sep 2008 12:41:10 +0000 (UTC)
Author: dodji
Date: Mon Sep 8 12:41:10 2008
New Revision: 926
URL: http://svn.gnome.org/viewvc/nemiver?rev=926&view=rev
Log:
Fix some style issues.
Modified:
trunk/ChangeLog
trunk/src/dbgengine/nmv-gdb-engine.cc
Modified: trunk/src/dbgengine/nmv-gdb-engine.cc
==============================================================================
--- trunk/src/dbgengine/nmv-gdb-engine.cc (original)
+++ trunk/src/dbgengine/nmv-gdb-engine.cc Mon Sep 8 12:41:10 2008
@@ -250,10 +250,11 @@
const UString& get_debugger_full_path () const
{
get_conf_mgr ()->get_key_value (CONF_KEY_GDB_BINARY,
- const_cast<Priv*> (this)->debugger_full_path);
+ const_cast<Priv*> (this)->debugger_full_path);
if (debugger_full_path == "" ||
debugger_full_path == DEFAULT_GDB_BINARY) {
- const_cast<Priv*> (this)->debugger_full_path = env::get_gdb_program ();
+ const_cast<Priv*> (this)->debugger_full_path =
+ env::get_gdb_program ();
}
LOG_DD ("debugger: '" << debugger_full_path << "'");
return debugger_full_path;
@@ -2052,12 +2053,14 @@
Command command;
queue_command (Command ("set breakpoint pending on"));
- //tell gdb not to pass the SIGINT signal to the target.
+
+ // tell gdb not to pass the SIGINT signal to the target.
queue_command (Command ("handle SIGINT stop print nopass"));
- //tell the linker to do all relocations at program load
- //time so that some "step into" don't take for ever.
- //On GDB, it seems that stepping into a function that is
- //in a share lib takes stepping through GNU ld, so it can take time.
+
+ // tell the linker to do all relocations at program load
+ // time so that some "step into" don't take for ever.
+ // On GDB, it seems that stepping into a function that is
+ // in a share lib takes stepping through GNU ld, so it can take time.
const char *nmv_ld_bind_now = g_getenv ("NMV_LD_BIND_NOW");
if (nmv_ld_bind_now && atoi (nmv_ld_bind_now)) {
LOG_DD ("setting LD_BIND_NOW=1");
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]