mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2026-02-12 16:10:54 +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>
|
Thu May 26 01:10:45 2005 Soeren Sandmann <sandmann@redhat.com>
|
||||||
|
|
||||||
* sysprof.c (on_callers_row_activated): Grab focus on the callers
|
* sysprof.c (on_callers_row_activated): Grab focus on the callers
|
||||||
|
|||||||
19
TODO
19
TODO
@ -2,11 +2,27 @@ Before 1.0:
|
|||||||
|
|
||||||
* Interface
|
* Interface
|
||||||
- Consider expanding a few more levels of a new descendants tree
|
- 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
|
* Build system
|
||||||
- Find out what distributions it actually works on
|
- Find out what distributions it actually works on
|
||||||
(ask for sucess/failure-stories in 0.9.x releases)
|
(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:
|
Before 1.2:
|
||||||
|
|
||||||
* Correctness
|
* Correctness
|
||||||
@ -28,6 +44,9 @@ Before 1.2:
|
|||||||
- translation should be hooked up
|
- translation should be hooked up
|
||||||
- Consider adding "at least 5% inclusive cost" filter
|
- Consider adding "at least 5% inclusive cost" filter
|
||||||
- Ability to generate "screenshots" suitable for mail/blog/etc
|
- 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
|
- Fixing the oops in kernels < 2.6.11
|
||||||
|
|
||||||
- Make the process waiting in poll() responsible for extracting
|
- 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);
|
close (fd);
|
||||||
|
|
||||||
if (crc != file_crc)
|
if (crc != file_crc)
|
||||||
|
{
|
||||||
g_print ("warning: %s has wrong crc\n", name);
|
g_print ("warning: %s has wrong crc\n", name);
|
||||||
|
return FALSE;
|
||||||
return crc == file_crc;
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* FIXME - not10: this should probably be detected by config.h -- find out what gdb does*/
|
/* FIXME - not10: this should probably be detected by config.h -- find out what gdb does*/
|
||||||
|
|||||||
Reference in New Issue
Block a user