File: ChangeLog

package info (click to toggle)
cgdb 0.6.6-2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 4,052 kB
  • sloc: ansic: 19,106; sh: 4,798; exp: 1,019; lex: 392; yacc: 255; makefile: 246; php: 28; cpp: 10
file content (219 lines) | stat: -rw-r--r-- 5,698 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
version 0.6.6 (06/09/2011):

version 0.6.5 (01/01/2010):

08/17/2007 Bob Rossi <bob@brasko.net>

	* include/io.h (io_data_ready, io_getchar): Modify comment.
	* src/io.c (io_data_ready): Add blocking capability.

version 0.6.4 (28/04/2007):

10/03/2006 Bob Rossi <bob@brasko.net>

	* include/sys_util.h, src/sys_util.c (xcalloc): Rename to cgdb_calloc.
	(xmalloc): Rename to cgdb_malloc.
	(xrealloc): Rename to cgdb_realloc.
	(xstrdup): Rename to cgdb_strdup.
	(xclose): Rename to cgdb_xclose.
	* src/fork_util.c: Replace xmalloc with cgdb_malloc. 
	Replace xclose with cgdb_close. Replace xstrdup with cgdb_strdup.

6/09/2006 Bob Rossi <bob@brasko.net>

	* src/io.c (io_data_ready): Change #ifdef from HAVE_SELECT to
	HAVE_SYS_SELECT_H.

version 0.6.3 (03/06/2006):

5/29/2006 Bob Rossi <bob@brasko.net>

	* include/terminal.h (tty_set_echo): Added function.
	* src/terminal.c (tty_set_echo): Ditto.
	* src/fork_util.c (invoke_debugger): Turn echo off on GDB side.

5/21/2006 Bob Rossi <bob@brasko.net>

	* src/fork_util.c (pty_free_memory): Add function.
	(invoke_debugger): Change to use a pty instead of a pipe.

version 0.6.2 (04/09/2006):

4/05/2006 Bob Rossi <bob@brasko.net>

	* Makefile.in: Autogenerated.
	* src/Makefile.in: Autogenerated.

version 0.6.1 (03/06/2006):
version 0.6.0 (01/30/2006):

1/19/2006 Bob Rossi <bob@brasko.net>

	* Makefile.in: Autogenerated.
	* src/Makefile.in: Ditto.

1/14/2006 Bob Rossi <bob@brasko.net>

	* Makefile.in: Autogenerated.
	* src/Makefile.in: Ditto.

10/06/2005 Bob Rossi <bob@brasko.net>
  
	* include/terminal.h (tty_reset): Removed.
	(tty_get_attributes, tty_set_attributes, tty_off_xon_xoff): Added.
	* src/terminal.c (tty_reset): Removed.
	(tty_get_attributes, tty_set_attributes, tty_off_xon_xoff): Added.

09/30/2005 Bob Rossi <bob@brasko.net>

	* include/fork_util.h (invoke_process,pty_free_process): Remove
	functions.
	(pty_pair_*): Add interface for pty's.
	* src/fork_util.c: Implement above interface.

version 0.5.3 (08/08/2005):

08/02/2005 Bob Rossi <bob@brasko.net>
  
	* Makefile.in: Autogenerated.
	* src/Makefile.in: Ditto.

08/02/2005 Bob Rossi <bob@brasko.net>
  
	* Makefile.in: Autogenerated.
	* src/Makefile.in: Ditto.

07/13/2005 Bob Rossi <bob@brasko.net>

	* Makefile.in: Autogenerated.
	* src/Makefile.in: Ditto.
	* src/logger.c (HAVE_STRINGS_H): Misspelling. Changed to
	HAVE_STRING_H.

06/30/2005 Bob Rossi <bob@brasko.net>

	* io.h (io_getchar): Add parameter and return value semantics.
	* io.c (io_getchar): Ditto.

05/23/2005 Bob Rossi <bob@brasko.net>

	* fork_util.h (invoke_pty_process): Removed.
	* fork_util.c (invoke_pty_process): Ditto.

version 0.5.2 (05/21/2005):

05/19/2005 Bob Rossi <bob@brasko.net>

	* io.c (io_data_ready): Oops, here is the correct fix.

05/19/2005 Bob Rossi <bob@brasko.net>

	* io.c (io_data_ready): Modified timeout.tv_usec value.

05/19/2005 Bob Rossi <bob@brasko.net>

	* io.h (io_data_ready): Add new return value in comment.
	* io.c (io_data_ready): Add new return value.

05/19/2005 Bob Rossi <bob@brasko.net>

   * pseudo.c: Changed function name from strlcpy to strlcpy_local.

version 0.5.1 (04/02/2005):

04/02/2005 Bob Rossi <bob@brasko.net>

	* fork_util.c (invoke_debugger): Call exit() if exec failed.

04/01/2005 Bob Rossi <bob@brasko.net>

   * logger.c (logger_set_file): print message when couldn't open file

04/01/2005 Bob Rossi <bob@brasko.net>
   
   * Makefile.in: Regenerated with documented autotools version.

version 0.5.0 (07/14/2004):
version 0.4.2 (05/10/2004):
version 0.4.1 (04/26/2004):

04/06/2004 Bob Rossi <bob@brasko.net>

    * io.h: Added io_getchar.
	* io.c: Implemented io_getchar

01/30/2004 Bob Rossi <bob@brasko.net>

   * fork_util.c: invoke_debugger, honors the choice parameter now.
   
01/29/2004 Bob Rossi <bob@brasko.net>

   * fs_util.h: Changed PATH_MAX to FSUTIL_PATH_MAX and #include <limits.h> to
   #include "fs_util.h"
   * fs_util.c: ditto
   * fork_util.c: ditto

01/08/2004 Bob Rossi <bob@brasko.net>

   * Makefile.in: regenerated with documented autotools version
   * src/Makefile.in: ditto

version 0.4.0-1 cygwin release

12/03/2003 Ronald Landheer-Cieslak <ronald@landheer.com>

   * Makefile.in: re-generated
   * src/Makefile.in: ditto
   * src/Makefile.am: set include path relative to source tree
   
version 0.4.0 (10/28/2003):

10/23/2003 Bob Rossi <bob@brasko.net>

   * error.h: Add err_verbose prototype.
   * error.c: Add err_verbose implementation.
   Add static int to library.

08/27/2003 Bob Rossi <bob@brasko.net>

   * fork_util.c: invoke_debugger, adding --annotate=2 when invoking GDB.

08/16/2003 Bob Rossi <bob@brasko.net>
	
	* fork_util.h: invoke_debugger, added 'const' to arg path.
	util_free_tty, added const to arg sname.
	* fork_util.c: ditto

version 0.3.4 (08/14/2003):

version 0.3.3a (07/16/2003):

version 0.3.3 (07/15/2003):

version 0.3.2 (06/25/2003):

06/23/2003 Bob Rossi <bob_rossi@cox.net>

	* io.h: Added io_data_ready function. Checks to see if data is 
	ready for reading on a file descriptor.
	* io.c: Implements io_data_ready

06/01/2003 Bob Rossi <bob_rossi@cox.net>

    * fs_util.h: Changed 'char *' to 'const char *' in prototypes where needed
    * fs_util.h: Removed invalid return comment in fs_util_get_path
    * fs_util.h: Added better comment for fs_util_create_dir_in_base
    * fs_util.c: Changed definitions from 'char *' to 'const char *'

04/30/2003 Bob Rossi <bob_rossi@cox.net>

    * Adding include/terminal.h and src/terminal.c: They provide functions to
    change the terminal settings ( cbreak, raw, normal ... )

version 0.3.1 (04/28/2003):

04/27/2003 Bob Rossi <bob_rossi@cox.net>

    * Reorganized the cvs tree

version 0.3.0 (04/11/2003):