From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23981 invoked by alias); 11 Nov 2013 19:50:36 -0000 Mailing-List: contact src-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: src-cvs-owner@sourceware.org Received: (qmail 23960 invoked by uid 9514); 11 Nov 2013 19:50:36 -0000 Date: Mon, 11 Nov 2013 19:50:00 -0000 Message-ID: <20131111195034.23934.qmail@sourceware.org> From: pmuldoon@sourceware.org To: src-cvs@sourceware.org Subject: gdb and binutils branch master updated. bc79de95db1005e1cefc18729eca9e9d5f771c91 X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 67dc82bc511e35ef134952014b4deb2fdcf10676 X-Git-Newrev: bc79de95db1005e1cefc18729eca9e9d5f771c91 X-SW-Source: 2013-q4/txt/msg00111.txt.bz2 This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "gdb and binutils". The branch, master has been updated via bc79de95db1005e1cefc18729eca9e9d5f771c91 (commit) from 67dc82bc511e35ef134952014b4deb2fdcf10676 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=bc79de95db1005e1cefc18729eca9e9d5f771c91 commit bc79de95db1005e1cefc18729eca9e9d5f771c91 Author: Phil Muldoon Date: Mon Nov 11 19:49:45 2013 +0000 2013-11-11 Phil Muldoon PR python/15629 * NEWS: Add linetable feature. * Makefile.in (SUBDIR_PYTHON_OBS): Add py-linetable entries. * python/py-linetable.c: New file. * python/py-symtab.c (stpy_get_linetable): New function. * python/python-internal.h (symtab_to_linetable_object): Declare. (gdbpy_initialize_linetable): Ditto. * python/python.c (_initialize_python): Call gdbpy_initialize_linetable. 2013-11-11 Phil Muldoon * gdb.python/py-linetable.S: New file. * gdb.python/py-linetable.c: New file. * gdb.python/py-linetable.exp: New file. 2013-11-11 Phil Muldoon * gdb.texinfo (Symbol Tables In Python): Add linetable method entry. (Line Tables In Python): New node. ----------------------------------------------------------------------- Summary of changes: gdb/ChangeLog | 12 + gdb/Makefile.in | 6 + gdb/NEWS | 1 + gdb/doc/ChangeLog | 5 + gdb/doc/gdb.texinfo | 84 ++++ gdb/python/py-linetable.c | 622 +++++++++++++++++++++++++++++ gdb/python/py-symtab.c | 17 + gdb/python/python-internal.h | 4 +- gdb/python/python.c | 1 + gdb/testsuite/ChangeLog | 6 + gdb/testsuite/gdb.python/py-linetable.S | 362 +++++++++++++++++ gdb/testsuite/gdb.python/py-linetable.c | 46 +++ gdb/testsuite/gdb.python/py-linetable.exp | 76 ++++ 13 files changed, 1241 insertions(+), 1 deletions(-) create mode 100644 gdb/python/py-linetable.c create mode 100644 gdb/testsuite/gdb.python/py-linetable.S create mode 100644 gdb/testsuite/gdb.python/py-linetable.c create mode 100644 gdb/testsuite/gdb.python/py-linetable.exp hooks/post-receive -- gdb and binutils