Remove debug spew.

Wed Jan 11 17:51:54 2006  Søren Sandmann  <sandmann@redhat.com>

	* collector.c: Remove debug spew.

	* TODO: updates
This commit is contained in:
Søren Sandmann
2006-01-11 22:53:08 +00:00
committed by Søren Sandmann Pedersen
parent 6d76b0c486
commit 779b537f2b
3 changed files with 21 additions and 12 deletions

View File

@ -1,3 +1,9 @@
Wed Jan 11 17:51:54 2006 Søren Sandmann <sandmann@redhat.com>
* collector.c: Remove debug spew.
* TODO: updates
Mon Jan 9 09:58:25 2006 Soeren Sandmann <sandmann@redhat.com>
* module/sysprof-module.c (timer_notify): Remove START_OF_STACK

24
TODO
View File

@ -16,18 +16,11 @@ Before 1.0.2:
* See if we can reproduce this: Press start without kernel module loaded,
then load kernel module and press start again. Segmentation fault.
* Test on x86-64.
Before 1.2:
* - Run a.out generated normally with gcc.
- Run sysprof
- hit profile
- Kill a.out
- strip a.out
- run a.out
- hit start
- hit profile
At this point we should not get any symbols, but we do. There is some
sort of bad caching going on.
* Add spew infrastructure to make remote debugging easier.
* Make it compile and work on x86-64
@ -427,6 +420,17 @@ Later:
DONE:
* - Run a.out generated normally with gcc.
- Run sysprof
- hit profile
- Kill a.out
- strip a.out
- run a.out
- hit start
- hit profile
At this point we should not get any symbols, but we do. There is some
sort of bad caching going on.
* support more than one reader of the samples properly
- Don't generate them if noone cares

View File

@ -182,10 +182,9 @@ open_fd (Collector *collector,
while (fd < 0 && g_timer_elapsed (timer, NULL) < 0.5)
{
/* Give udev time to create the device */
usleep (100000);
g_print ("open\n");
fd = open (SYSPROF_FILE, O_RDONLY);
}