source: rtems/c/src/librdbg/ChangeLog @ cb8e48e

4.104.114.84.95
Last change on this file since cb8e48e was cb8e48e, checked in by Joel Sherrill <joel.sherrill@…>, on 03/20/02 at 14:24:46

2002-03-20 Ralf Corsepius <corsepiu@…>

PR 149

  • src/i386/any/Makefile.am: s/$(SED)/sed/.
  • src/m68k/any/Makefile.am: s/$(SED)/sed/.
  • src/powerpc/new_exception_processing/Makefile.am: s/$(SED)/sed/. (Reported by Till Straumann <strauman@…>)
  • Property mode set to 100644
File size: 6.5 KB
RevLine 
[cb8e48e]12002-03-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2
3        PR 149
4        * src/i386/any/Makefile.am: s/$(SED)/sed/.
5        * src/m68k/any/Makefile.am: s/$(SED)/sed/.
6        * src/powerpc/new_exception_processing/Makefile.am: s/$(SED)/sed/.
7        (Reported by Till Straumann <strauman@SLAC.Stanford.EDU>)
8
[f562815]92002-02-01      Eric Valette <valette@crf.canon.fr>
10
11
12        * So many patches have been posted recently on the mailing list and
13        because we were unable to find correct solution to compile on various
14        linux distros (due to rpcgen incompatibilities), and because the coding
15        style of rdbg was rather inconsistant among various pieces of code, I
16        decided to:
17            1) make some cleaning regarding global coding style (using
18               indent + manual edits),
19            2) incorporate/review the paches send by various people
20               (S. Holford, T. Strauman),
21            3) Fix the bug due to varying rpcgen code generation
22               in remdeb_svc.c,
23            4) Remove some dead code,
24            5) Apply a patches enabling to call enterRdbg imediately
25               after rdbg initialization is done,
26
27        NB : the paches is huge but it is mainly due to coding styke chnages.
28        Only few lines of codes have been really changed and they do not impact
29        rdbg functionnality (AFAIKT).
30
31        * include/rdbg/servrpc.h, include/rdbg/i386/rdbg_f.h,
32        include/rdbg/m68k/rdbg_f.h, include/rdbg/powerpc/rdbg_f.h,
33        src/_servtgt.c, src/awk.svc, src/excep.c, src/ptrace.c, src/rdbg.c,
34        src/remdeb.x, src/servbkpt.c, src/servcon.c, src/servrpc.c,
35        src/servtgt.c, src/servtsp.c, src/servutil.c, src/i386/excep_f.c,
36        src/i386/rdbg_f.c, src/i386/any/Makefile.am, src/i386/any/remdeb.h,
37        src/i386/any/remdeb_svc.c, src/i386/any/remdeb_xdr.c,
38        src/m68k/excep_f.c, src/m68k/rdbg_f.c, src/m68k/any/Makefile.am,
39        src/m68k/any/remdeb.h, src/m68k/any/remdeb_svc.c,
40        src/m68k/any/remdeb_xdr.c, src/powerpc/excep_f.c, src/powerpc/rdbg_f.c,
41        src/powerpc/new_exception_processing/Makefile.am,
42        src/powerpc/new_exception_processing/remdeb.h,
43        src/powerpc/new_exception_processing/remdeb_svc.c,
44        src/powerpc/new_exception_processing/remdeb_xdr.c: Modified.
45
462002-01-18      Till Straumann <strauman@slac.stanford.edu>
47
48        * src/powerpc/excep_f.c: This patch addresses the following issues:
49            - exception handler needs to enable MSR_FP if the interrupted
50              thread is FP enabled.
51            - printk message for MSR fixed and added stacktrace
52
53        NOTE: this requires the stacktrace patch to
54        lib/libbsp/powerpc/shared/vectors/vector_init.c
55        (#ifdef DDEBUG only, however)
56
[6966421]572001-01-18      Joel Sherrill <joel@OARcorp.com>
58
59        * src/powerpc/new_exception_processing/remdeb_svc.c: Corrected
60        macro using variable arguments.
61       
622001-01-18      Joel Sherrill <joel@OARcorp.com>
63
64        * src/powerpc/new_exception_processing/remdeb.h,
65        src/powerpc/new_exception_processing/remdeb_xdr.c: Regenerated since
66        I updated the main RTEMS development machine to RedHat 7.2 and
67        apparently got a new version of rpcgen.
68
692001-10-30      Victor V. Vengerov <vvv@oktet.ru>
70
71        * src/m68k/rdbg_cpu_asm.S: Now compiles on ColdFire.
72
732001-10-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
74
75        * configure.ac: Fix latent bug exposed by removal of config.cache's
76        which prevented powerpc targets librdbg from building.
77
782001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
79
80        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
81        * configure.in: Remove.
82        * configure.ac: New file, generated from configure.in by autoupdate.
83
842001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
85
86        * include/rdbg/i386/Makefile.am: Use 'PREINSTALL_FILES ='.
87        * include/rdbg/m68k/Makefile.am: Use 'PREINSTALL_FILES ='.
88        * include/rdbg/powerpc/Makefile.am: Use 'PREINSTALL_FILES ='.
89        * include/rdbg/Makefile.am: Use 'PREINSTALL_FILES ='.
90        * src/i386/any/Makefile.am: Use 'PREINSTALL_FILES ='.
91        * src/m68k/any/Makefile.am: Use 'PREINSTALL_FILES ='.
92        * src/powerpc/new_exception_processing/Makefile.am: Use 'PREINSTALL_FILES ='.
93
942001-09-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
95
96        * src/i386/any/Makefile.am: Move MAINTAINERCLEANFILES before the
97        includes and use MAINTAINERCLEANFILES = to make automake-1.5 happy.
98        * src/m68k/any/Makefile.am: Ditto.
99        * src/powerpc/new_exception_processing/Makefile.am: Ditto.
100
1012001-09-14      Eric Norum <eric.norum@usask.ca>
102
103        * include/rdbg/rdbg.h, src/ptrace.c: Modifications to make gcc 3.x happy.
104
1052001-04-20      Eric Valette <valette@crf.canon.fr>
106
107        * mcp750 directory renamed new_exception processing as it
108        supports many more CPU models.
109        * configure.in, src/powerpc/Makefile.am,
[40cf43ea]110        src/powerpc/new_exception_processing/Makefile.am,
[6966421]111        src/powerpc/new_exception_processing/remdeb_f.x: New files
112        formerly in mcp750 plus modifications.
113        * src/powerpc/mcp750/.cvsignore, src/powerpc/mcp750/Makefile.am,
114        src/powerpc/mcp750/remdeb.h, src/powerpc/mcp750/remdeb_f.x,
115        src/powerpc/mcp750/remdeb_svc.c, src/powerpc/mcp750/remdeb_xdr.c:
116        Removed when moved to new_exception_processing.
117        * configure.in, src/powerpc/Makefile.am,
118        src/powerpc/new_exception_processing/Makefile.am,
119        src/powerpc/new_exception_processing/remdeb_f.x: Modified as
120        part of this effort to add support for the MPC8xx.
121
1222001-02-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
123
124        * include/rdbg/Makefile.am, include/rdbg/i386/Makefile.am,
125        include/rdbg/m68k/Makefile.am, include/rdbg/powerpc/Makefile.am:
126        Cleanup including more proper style on include files.
127
1282000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
129
130        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
131
1322000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
133
134        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
135
1362000-10-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
137
138        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
139        Switch to GNU canonicalization.
140
1412000-10-19  Antti P Miettinen  <anmietti@trshp.ntc.nokia.com>
142
143        * src/m68k/any/remdeb.h, src/m68k/any/remdeb_xdr.c,
144        src/m68k/any/remdeb_svc.c: New files missed in merger.
145
1462000-10-19  Antti P Miettinen  <anmietti@trshp.ntc.nokia.com>
147
148        * configure.in: Add m68k support.
149        * include/rdbg/m68k, src/m68k, src/m68k/any: New subdirectory.
150        * src/_servtgt.c: add status text to prinf upon task creation failure.
151        * src/rdbg.c: reconnect rdbg exception handlers upon RPC calls.
152        * src/m68k/Makefile.am, src/m68k/any/Makefile.am,
153        src/m68k/any/remdeb_f.x, src/m68k/any/.cvsignore,
154        src/m68k/any/remdeb.h, src/m68k/any/remdeb_xdr.c,
155        src/m68k/any/remdeb_svc.c, src/m68k/excep_f.c, src/m68k/rdbg_cpu_asm.S,
156        src/m68k/rdbg_f.c, src/m68k/.cvsignore: New files.
157
1582000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
159
160        * src/i386/any/Makefile.am, src/powerpc/mcp750/Makefile.am: Include
161        compile.am
162
1632000-08-10      Joel Sherrill <joel@OARcorp.com>
[40cf43ea]164
[6966421]165        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.