diff --git a/ChangeLog b/ChangeLog index 7a26bee8..15de6db3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Thu Jun 9 13:28:33 2005 Søren Sandmann + + * TODO: Updates + Thu May 26 01:10:45 2005 Soeren Sandmann * sysprof.c (on_callers_row_activated): Grab focus on the callers diff --git a/TODO b/TODO index c3144c43..77c0718a 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 2019347f..b7525d73 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*/