diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | announce-1.0.4 | 67 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | module/sysprof-module.c | 1 |
4 files changed, 74 insertions, 2 deletions
@@ -1,3 +1,9 @@ +2006-10-29 Soren Sandmann <sandmann@daimi.au.dk> + + * =-=-=-= Release sysprof 1.0.4 =-=-=-= + + * module/sysprof-module.c: Remove include of linux/config.h + Sat Aug 12 16:27:13 2006 Søren Sandmann <sandmann@redhat.com> * module/sysprof-module.c (timer_notify): Bugfix for SMP kernel: diff --git a/announce-1.0.4 b/announce-1.0.4 new file mode 100644 index 0000000..6e2e6b0 --- /dev/null +++ b/announce-1.0.4 @@ -0,0 +1,67 @@ +Sysprof Linux Profiler v. 1.0.4 + + +* What is it? +-------------------------- + +Sysprof is a sampling system-wide CPU profiler for Linux. + +Sysprof uses a Linux kernel module to profile the entire system, not +just an individual application. + +Of course, sysprof handles threads and shared libraries, and +applications do not have to be recompiled or instrumented. In fact +they don't even have to be restarted. + +Just insert the kernel module and start sysprof. + + +* Features: +---------------------- + + - Profiles all running processes, not just a single application + + - Call graph support showing time spent in each branch of the call tree + + - Has a simple graphical interface + + - Profiles can be loaded and saved + + - Easy to use: Just insert the kernel module and start sysprof + + - Supports Fedora debuginfo packages + + +* Sysprof 1.0.4 +-------------------------- + + - Compiles with the latest kernels + + - Bug fix for SMP kernels + + +Please report bugs as well as success or failure stories to + + sandmann@daimi au dk + + + +* Where can I get it? +-------------------------------------------- + +Home page: + + http://www.daimi.au.dk/~sandmann/sysprof/ + +Source code: + + http://www.daimi.au.dk/~sandmann/sysprof/sysprof-1.0.4.tar.gz + +Sysprof requires + + - Linux 2.6.11 or later, compiled with profiling support + - GTK+ 2.6 + - libglade 2.5 + + +Søren diff --git a/configure.ac b/configure.ac index 9e022a6..2c5cb63 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ AC_PREREQ(2.54) -AC_INIT([sysprof], [1.0.3]) +AC_INIT([sysprof], [1.0.4]) AC_CONFIG_SRCDIR(sysprof.glade) AM_INIT_AUTOMAKE(no-define) diff --git a/module/sysprof-module.c b/module/sysprof-module.c index 5cee6b6..964f1ac 100644 --- a/module/sysprof-module.c +++ b/module/sysprof-module.c @@ -19,7 +19,6 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include <linux/config.h> #if !CONFIG_PROFILING # error Sysprof needs a kernel with profiling support compiled in. #endif |