mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2025-12-31 20:36:25 +00:00
+Thu Jun 9 13:28:33 2005 Søren Sandmann <sandmann@redhat.com>
+ + * TODO: Updates +
This commit is contained in:
@ -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
|
||||
|
||||
19
TODO
19
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
|
||||
|
||||
@ -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*/
|
||||
|
||||
Reference in New Issue
Block a user