summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSøren Sandmann Pedersen <ssp@src.gnome.org>2005-06-10 01:11:53 +0000
committerSøren Sandmann Pedersen <ssp@src.gnome.org>2005-06-10 01:11:53 +0000
commita2499b571ff0c1835da818bf6150c4b987725a52 (patch)
tree2910bb1c5cd98d78f2095b4ad00c0d88f7e7eeda
parent5cb9392775e84ae4ef0d32e42b9c1f71fb86544c (diff)
+Thu Jun 9 13:28:33 2005 Søren Sandmann <sandmann@redhat.com>
+ + * TODO: Updates +
-rw-r--r--ChangeLog4
-rw-r--r--TODO19
-rw-r--r--binfile.c9
3 files changed, 30 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 7a26bee..15de6db 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu Jun 9 13:28:33 2005 Søren Sandmann <sandmann@redhat.com>
+
+ * TODO: Updates
+
Thu May 26 01:10:45 2005 Soeren Sandmann <sandmann@redhat.com>
* sysprof.c (on_callers_row_activated): Grab focus on the callers
diff --git a/TODO b/TODO
index c3144c4..77c0718 100644
--- a/TODO
+++ b/TODO
@@ -2,11 +2,27 @@ Before 1.0:
* Interface
- Consider expanding a few more levels of a new descendants tree
+ - Algorithm should be expand in proportion to the
+ "total" percentage. Basically consider 'total' the
+ likelyhood that the user is going to look at it.
+ - Maybe just; keep expanding the biggest total until
+ there is no more room or we run out of things to expand.
* Build system
- Find out what distributions it actually works on
(ask for sucess/failure-stories in 0.9.x releases)
+ - Check the kernel we are building against, if it is SMP or
+ less than 2.6.11, print a warning and suggest upgrading.
+
+* after 1.0:
+ - announce on
+ - advogato
+ - gnomefiles
+ - freshmeat
+ - gnome-announce list
+ - gnomedesktop
+
Before 1.2:
* Correctness
@@ -28,6 +44,9 @@ Before 1.2:
- translation should be hooked up
- Consider adding "at least 5% inclusive cost" filter
- Ability to generate "screenshots" suitable for mail/blog/etc
+ UI: "generate screenshot" menu item pops up a window with
+ a text area + a radio buttons "text/html". When you flick
+ them, the text area is automatically updated.
- Fixing the oops in kernels < 2.6.11
- Make the process waiting in poll() responsible for extracting
diff --git a/binfile.c b/binfile.c
index 2019347..b7525d7 100644
--- a/binfile.c
+++ b/binfile.c
@@ -175,9 +175,14 @@ separate_debug_file_exists (const char *name, unsigned long crc)
close (fd);
if (crc != file_crc)
+ {
g_print ("warning: %s has wrong crc\n", name);
-
- return crc == file_crc;
+ return FALSE;
+ }
+ else
+ {
+ return TRUE;
+ }
}
/* FIXME - not10: this should probably be detected by config.h -- find out what gdb does*/