1 |
786 |
skrzyp |
2007-10-14 Oyvind Harboe
|
2 |
|
|
|
3 |
|
|
* src/profile.c: do not relaunch tftpd thread upon second invocation
|
4 |
|
|
of profile_on
|
5 |
|
|
|
6 |
|
|
2008-08-18 Bart Veer
|
7 |
|
|
|
8 |
|
|
* host/Makefile.am: update host-side configury
|
9 |
|
|
* host/Makefile.in, host/aclocal.m4, host/configure: regenerate
|
10 |
|
|
|
11 |
|
|
2007-12-14 Oyvind Harboe
|
12 |
|
|
2007-12-21 Jonathan Larmour
|
13 |
|
|
|
14 |
|
|
* include/profile.h: Declare profile_off.
|
15 |
|
|
* src/profile.c: Added support for invoking profile_on() multiple
|
16 |
|
|
times. It now stops profiling and sets up a fresh profiling range
|
17 |
|
|
on every invocation using new profile_off() function.
|
18 |
|
|
* doc/profile.sgml: Document it.
|
19 |
|
|
|
20 |
|
|
2005-05-13 Peter Korsgaard
|
21 |
|
|
|
22 |
|
|
* doc/profile.sgml: Fixed typo in HAL support section.
|
23 |
|
|
|
24 |
|
|
2005-02-18 Bart Veer
|
25 |
|
|
|
26 |
|
|
* doc/profile.sgml, misc/gprof.gdb, host/gprof.gdb,
|
27 |
|
|
host/acinclude.m4, host/aclocal.m4, host/configure,
|
28 |
|
|
host/configure.in, host/Makefile.am, host/Makefile.in:
|
29 |
|
|
Move gprof.gdb to the host subdirectory, and autoconfiscate it.
|
30 |
|
|
|
31 |
|
|
2003-09-29 Bart Veer
|
32 |
|
|
|
33 |
|
|
* src/profile.c (profile_tftp_read_next): fix off-by-one error
|
34 |
|
|
which lost the first mcount record.
|
35 |
|
|
|
36 |
|
|
* doc/profile.sgml: fix typo
|
37 |
|
|
|
38 |
|
|
* cdl/profile_gprof.cdl: clarify description of the tftp port
|
39 |
|
|
|
40 |
|
|
2003-09-26 Bart Veer
|
41 |
|
|
|
42 |
|
|
* cdl/profile_gprof.cdl, include/gmon.out.h, include/profile.h,
|
43 |
|
|
src/profile.c, misc/gprof.gdb, doc/gprof.sgml
|
44 |
|
|
Major update, including adding call graph support.
|
45 |
|
|
|
46 |
|
|
2003-04-27 Jonathan Larmour
|
47 |
|
|
|
48 |
|
|
* src/profile.c (profile_on): Clear profile before use. Reported
|
49 |
|
|
by Suzuki, Ryouzaburou.
|
50 |
|
|
|
51 |
|
|
2003-02-24 Jonathan Larmour
|
52 |
|
|
|
53 |
|
|
* cdl/profile_gprof.cdl: Add doc link.
|
54 |
|
|
|
55 |
|
|
2002-11-15 Gary Thomas
|
56 |
|
|
|
57 |
|
|
* include/gmon_out.h: Import non-GPL version from OpenBSD.
|
58 |
|
|
|
59 |
|
|
* doc/profile.sgml: Improve description of host/client and
|
60 |
|
|
target/server roles.
|
61 |
|
|
|
62 |
|
|
* src/profile.c:
|
63 |
|
|
* cdl/profile_gprof.cdl: Allow TFTP port number to be configured.
|
64 |
|
|
|
65 |
|
|
* src/profile.c:
|
66 |
|
|
* include/profile.h: Add proper C++ protections. Change timer
|
67 |
|
|
callback function to be __profile_hit() - less polluting.
|
68 |
|
|
|
69 |
|
|
* doc/profile.sgml: New file.
|
70 |
|
|
|
71 |
|
|
2002-11-14 Gary Thomas
|
72 |
|
|
|
73 |
|
|
* src/profile.c:
|
74 |
|
|
* include/profile.h:
|
75 |
|
|
* include/gmon_out.h:
|
76 |
|
|
* cdl/profile.cdl: New package to support application profiling.
|
77 |
|
|
|
78 |
|
|
//===========================================================================
|
79 |
|
|
// ####GPLCOPYRIGHTBEGIN####
|
80 |
|
|
// -------------------------------------------
|
81 |
|
|
// This file is part of eCos, the Embedded Configurable Operating System.
|
82 |
|
|
// Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc.
|
83 |
|
|
//
|
84 |
|
|
// This program is free software; you can redistribute it and/or modify
|
85 |
|
|
// it under the terms of the GNU General Public License as published by
|
86 |
|
|
// the Free Software Foundation; either version 2 or (at your option) any
|
87 |
|
|
// later version.
|
88 |
|
|
//
|
89 |
|
|
// This program is distributed in the hope that it will be useful, but
|
90 |
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
91 |
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
92 |
|
|
// General Public License for more details.
|
93 |
|
|
//
|
94 |
|
|
// You should have received a copy of the GNU General Public License
|
95 |
|
|
// along with this program; if not, write to the
|
96 |
|
|
// Free Software Foundation, Inc., 51 Franklin Street,
|
97 |
|
|
// Fifth Floor, Boston, MA 02110-1301, USA.
|
98 |
|
|
// -------------------------------------------
|
99 |
|
|
// ####GPLCOPYRIGHTEND####
|
100 |
|
|
//===========================================================================
|