Skip to content

Commit 4ef3bf4

Browse files
committed
updating some info to reflect that the project is now hosted at github
1 parent 9bf7617 commit 4ef3bf4

File tree

8 files changed

+240
-203
lines changed

8 files changed

+240
-203
lines changed

BUGS

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
This file has been superseded by the bugzilla at: http://bugs.codef00.com/
1+
This file has been superseded by the issue tracker at: https://github.com/eteran/edb-debugger/issues

CHANGELOG

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
NOTE: for future change logs, please refer to the SVN commit logs found at:
2-
http://code.google.com/p/edb-debugger/source/list
2+
https://github.com/eteran/edb-debugger/commits/master
33

44

55
2011-07-11

TODO

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
This file has been superseded by the bugzilla at: http://bugs.codef00.com/
1+
This file has been superseded by the issue tracker at: https://github.com/eteran/edb-debugger/issues

edb.appdata.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<screenshots>
1414
<screenshot type="default" width="1121" height="839">http://codef00.com/img/debugger.png</screenshot>
1515
</screenshots>
16-
<url type="homepage">http://codef00.com/projects</url>
16+
<url type="homepage">https://github.com/eteran/edb-debugger</url>
1717
<updatecontact>evan.teran_at_gmail.com</updatecontact>
1818
</application>
1919

plugins/DebuggerCore/unix/linux/DebuggerCore.cpp

+16
Original file line numberDiff line numberDiff line change
@@ -203,9 +203,25 @@ struct user_stat {
203203
/* 39 */ int processor;
204204
/* 40 */ unsigned rt_priority;
205205
/* 41 */ unsigned policy;
206+
207+
// Linux 2.6.18
206208
/* 42 */ unsigned long long delayacct_blkio_ticks;
209+
210+
// Linux 2.6.24
207211
/* 43 */ unsigned long guest_time;
208212
/* 44 */ long cguest_time;
213+
214+
// Linux 3.3
215+
/* 45 */ unsigned long start_data;
216+
/* 46 */ unsigned long end_data;
217+
/* 47 */ unsigned long start_brk;
218+
219+
// Linux 3.5
220+
/* 48 */ unsigned long arg_start;
221+
/* 49 */ unsigned long arg_end;
222+
/* 50 */ unsigned long env_start;
223+
/* 51 */ unsigned long env_end;
224+
/* 52 */ int exit_code;
209225
};
210226

211227
//------------------------------------------------------------------------------

src/Debugger.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -897,8 +897,8 @@ void Debugger::on_action_About_triggered() {
897897
QMessageBox::about(this, tr("About edb"),
898898
tr(
899899
"<p>edb (Evan's Debugger) is designed to be an easy to use, modular, and cross platform debugger.</p>"
900-
"<p>More information and updates can be found at <a href=\"http://codef00.com\">http://codef00.com</a></p>"
901-
"<p>You can also report bugs an feature requests at <a href=\"http://bugs.codef00.com\">http://bugs.codef00.com</a></p>"
900+
"<p>More information and updates can be found at <a href=\"https://github.com/eteran/edb-debugger\">https://github.com/eteran/edb-debugger</a></p>"
901+
"<p>You can also report bugs an feature requests at <a href=\"https://github.com/eteran/edb-debugger/issues\">https://github.com/eteran/edb-debugger/issues</a></p>"
902902
"<p>Written by Evan Teran.</p>"
903903
"<p>version: %1</p>"
904904
).arg(edb::version));

0 commit comments

Comments
 (0)