qiyao | 22 May 2013 11:51
Favicon

src/readline ChangeLog.gdb configure configure.in

CVSROOT:	/cvs/src
Module name:	src
Changes by:	qiyao <at> sourceware.org	2013-05-22 09:51:49

Modified files:
	readline       : ChangeLog.gdb configure configure.in 

Log message:
	readline/
	
	* configure.in: Invoke AC_CANONICAL_BUILD.
	Change $host_os to $build_os.
	* configure: Regenerated.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/src/readline/ChangeLog.gdb.diff?cvsroot=src&r1=1.43&r2=1.44
http://sourceware.org/cgi-bin/cvsweb.cgi/src/readline/configure.diff?cvsroot=src&r1=1.17&r2=1.18
http://sourceware.org/cgi-bin/cvsweb.cgi/src/readline/configure.in.diff?cvsroot=src&r1=1.13&r2=1.14

palves | 22 May 2013 11:31
Favicon

src/gdb ChangeLog python/python-internal.h

CVSROOT:	/cvs/src
Module name:	src
Changes by:	palves <at> sourceware.org	2013-05-22 09:31:44

Modified files:
	gdb            : ChangeLog 
	gdb/python     : python-internal.h 

Log message:
	Let the ARI know gdb_Py_DECREF is OK.
	
	The ARI complains with:
	
	> gdb/python/python-internal.h:177: code: editCase function: Function name starts lower case but has
uppercased letters.
	gdb/python/python-internal.h:177:gdb_Py_DECREF (void *op)
	
	gdb_Py_DECREF is just wrapping a python macro that happens to be mixed case.
	
	gdb/
	2013-05-22  Pedro Alves  <palves <at> redhat.com>
	
	* python/python-internal.h (gdb_Py_DECREF): Tag with
	"ARI: editCase function".

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/ChangeLog.diff?cvsroot=src&r1=1.15613&r2=1.15614
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/python/python-internal.h.diff?cvsroot=src&r1=1.76&r2=1.77

(Continue reading)

gdbadmin | 22 May 2013 02:00
Favicon

src/gdb version.in

CVSROOT:	/cvs/src
Module name:	src
Branch: 	gdb_7_6-branch
Changes by:	gdbadmin <at> sourceware.org	2013-05-22 00:00:34

Modified files:
	gdb            : version.in 

Log message:
	

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/version.in.diff?cvsroot=src&only_with_tag=gdb_7_6-branch&r1=1.4276.2.75&r2=1.4276.2.76

gdbadmin | 22 May 2013 02:00
Favicon

src/gdb version.in

CVSROOT:	/cvs/src
Module name:	src
Changes by:	gdbadmin <at> sourceware.org	2013-05-22 00:00:03

Modified files:
	gdb            : version.in 

Log message:
	

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/version.in.diff?cvsroot=src&r1=1.4347&r2=1.4348

ppluzhnikov | 22 May 2013 01:41
Favicon

src/gdb ChangeLog solib-svr4.c

CVSROOT:	/cvs/src
Module name:	src
Changes by:	ppluzhnikov <at> sourceware.org	2013-05-21 23:41:29

Modified files:
	gdb            : ChangeLog solib-svr4.c 

Log message:
	2013-05-21  Paul Pluzhnikov  <ppluzhnikov <at> google.com>
	
	* solib-svr4.c (svr4_free_so): Protect against NULL dereference.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/ChangeLog.diff?cvsroot=src&r1=1.15612&r2=1.15613
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/solib-svr4.c.diff?cvsroot=src&r1=1.177&r2=1.178

palves | 21 May 2013 22:53
Favicon

src/gdb ChangeLog python/py-prettyprint.c pyth ...

CVSROOT:	/cvs/src
Module name:	src
Changes by:	palves <at> sourceware.org	2013-05-21 20:53:21

Modified files:
	gdb            : ChangeLog 
	gdb/python     : py-prettyprint.c py-utils.c 

Log message:
	py_decref: Don't check for NULL before calling Py_DECREF.
	
	The only difference between Py_DECREF and Py_XDECREF is that the latter allows passing
	in a NULL object, while the former prohibits it.  Given that, it's natural to expect
	the same from py_decref vs py_xdecref.
	
	gdb/
	2013-05-21  Pedro Alves  <palves <at> redhat.com>
	
	* python/py-prettyprint.c (apply_val_pretty_printer): Check
	whether PRINTER is NULL before installing a Py_DECREF cleanup.
	* python/py-utils.c (py_decref): Don't check for NULL before
	calling Py_DECREF.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/ChangeLog.diff?cvsroot=src&r1=1.15611&r2=1.15612
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/python/py-prettyprint.c.diff?cvsroot=src&r1=1.33&r2=1.34
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/python/py-utils.c.diff?cvsroot=src&r1=1.22&r2=1.23

palves | 21 May 2013 22:52
Favicon

src/gdb ChangeLog python/py-utils.c python/pyt ...

CVSROOT:	/cvs/src
Module name:	src
Changes by:	palves <at> sourceware.org	2013-05-21 20:52:30

Modified files:
	gdb            : ChangeLog 
	gdb/python     : py-utils.c python-internal.h 

Log message:
	Centralize workaround for Python 2.6's Py_DECREF.
	
	Wrap/redefine Py_DECREF ourselves, avoiding the need for uses to care
	about extra braces due to the fact that Python only started wrapping Py_DECREF
	in 'do {} while (0)' after 2.6.
	
	gdb/
	2013-05-21  Pedro Alves  <palves <at> redhat.com>
	
	* python/py-utils.c (py_decref): Remove extra braces.
	(gdb_pymodule_addobject): Remove extra braces.
	* python-internal.h (gdb_Py_DECREF): New static inline function.
	(Py_DECREF): Redefine as calling gdb_Py_DECREF.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/ChangeLog.diff?cvsroot=src&r1=1.15610&r2=1.15611
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/python/py-utils.c.diff?cvsroot=src&r1=1.21&r2=1.22
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/python/python-internal.h.diff?cvsroot=src&r1=1.75&r2=1.76

kseitz | 21 May 2013 21:11
Favicon

src/gdb/testsuite ChangeLog gdb.base/filesym.exp

CVSROOT:	/cvs/src
Module name:	src
Changes by:	kseitz <at> sourceware.org	2013-05-21 19:11:50

Modified files:
	gdb/testsuite  : ChangeLog 
	gdb/testsuite/gdb.base: filesym.exp 

Log message:
	* gdb.base/filesym.exp: Use gdb_test_multiple instead of
	gdb_expect.
	Add test to flush the remaining input buffer so that this
	file passes testsuite/12649.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/testsuite/ChangeLog.diff?cvsroot=src&r1=1.3672&r2=1.3673
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/testsuite/gdb.base/filesym.exp.diff?cvsroot=src&r1=1.1&r2=1.2

philippe | 21 May 2013 20:47
Favicon

src/gdb ChangeLog breakpoint.c testsuite/Chang ...

CVSROOT:	/cvs/src
Module name:	src
Changes by:	philippe <at> sourceware.org	2013-05-21 18:47:05

Modified files:
	gdb            : ChangeLog breakpoint.c 
	gdb/testsuite  : ChangeLog 
Added files:
	gdb/testsuite/gdb.base: catch-signal-fork.c 
	                        catch-signal-fork.exp 

Log message:
	Fix internal error caused by interaction between catch signal and fork

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/ChangeLog.diff?cvsroot=src&r1=1.15609&r2=1.15610
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/breakpoint.c.diff?cvsroot=src&r1=1.762&r2=1.763
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/testsuite/ChangeLog.diff?cvsroot=src&r1=1.3671&r2=1.3672
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/testsuite/gdb.base/catch-signal-fork.c.diff?cvsroot=src&r1=NONE&r2=1.1
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/testsuite/gdb.base/catch-signal-fork.exp.diff?cvsroot=src&r1=NONE&r2=1.1

sterling | 21 May 2013 19:58
Favicon

src/gdb/testsuite ChangeLog boards/remote-stdi ...

CVSROOT:	/cvs/src
Module name:	src
Changes by:	sterling <at> sourceware.org	2013-05-21 17:58:46

Modified files:
	gdb/testsuite  : ChangeLog 
Added files:
	gdb/testsuite/boards: remote-stdio-gdbserver.exp 

Log message:
	2013-05-21  Sterling Augustine  <saugustine <at> google.com>
	
	* boards/remote-stdio-gdbserver.exp: New file.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/testsuite/ChangeLog.diff?cvsroot=src&r1=1.3670&r2=1.3671
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/testsuite/boards/remote-stdio-gdbserver.exp.diff?cvsroot=src&r1=NONE&r2=1.1

jkratoch | 21 May 2013 17:02
Favicon

src/gdb ChangeLog python/py-utils.c

CVSROOT:	/cvs/src
Module name:	src
Changes by:	jkratoch <at> sourceware.org	2013-05-21 15:02:28

Modified files:
	gdb            : ChangeLog 
	gdb/python     : py-utils.c 

Log message:
	gdb/
	Workaround Python 2.6.
	* python/py-utils.c (gdb_pymodule_addobject): Wrap Py_DECREF into
	a block.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/ChangeLog.diff?cvsroot=src&r1=1.15608&r2=1.15609
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/python/py-utils.c.diff?cvsroot=src&r1=1.20&r2=1.21


Gmane