diff options
author | Søren Sandmann Pedersen <ssp@src.gnome.org> | 2005-06-10 01:11:53 +0000 |
---|---|---|
committer | Søren Sandmann Pedersen <ssp@src.gnome.org> | 2005-06-10 01:11:53 +0000 |
commit | a2499b571ff0c1835da818bf6150c4b987725a52 (patch) | |
tree | 2910bb1c5cd98d78f2095b4ad00c0d88f7e7eeda | |
parent | 5cb9392775e84ae4ef0d32e42b9c1f71fb86544c (diff) |
+Thu Jun 9 13:28:33 2005 Søren Sandmann <sandmann@redhat.com>
+
+ * TODO: Updates
+
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | TODO | 19 | ||||
-rw-r--r-- | binfile.c | 9 |
3 files changed, 30 insertions, 2 deletions
@@ -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 @@ -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 @@ -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*/ |