This is the mail archive of the systemtap-cvs@sourceware.org mailing list for the systemtap project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[SCM] systemtap: system-wide probe/trace tool branch, master, updated. release-1.8-80-g3aeea85


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 "systemtap: system-wide probe/trace tool".

The branch, master has been updated
       via  3aeea85c567697379049fe1b69483e19c0adb45f (commit)
       via  b5d37db9162c7168f7aa58e2d59d01f561492596 (commit)
       via  a738319611d44938afd47c67aa301486bb70346a (commit)
       via  ffbe6348f7a1d6c9e25787f7a628d38b2b57850e (commit)
       via  2466bf705cb1ef53c9a088e4ead0050ac7386442 (commit)
       via  12b9137522b38749ab822211eb61566bd5e6ab15 (commit)
       via  91101b9c2d0f896be6aee7ab97c37b6079f9fe40 (commit)
       via  002d7a983ee63d44fc302bd3ddbfa35849db2fd0 (commit)
       via  0c26033f4abcbee41fd2278b1c45e4975bddd1ad (commit)
       via  41d7d4fe3f84c1464ea38af98aa8d9a045f6cb4b (commit)
       via  b61527e56140d09c080cae897c5845fd6f968f88 (commit)
       via  4441e344f66b06ea3940c94fd13ba0f0aefe3109 (commit)
       via  138bbe90a2aa9094a625fc277c1f9799da91b421 (commit)
       via  3a894f7e8ea8bb8bd05cc2d76fe386558e1a4f54 (commit)
      from  f34254daab1c5779baf381aabf2ab33a4541bd4c (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 -----------------------------------------------------------------
commit 3aeea85c567697379049fe1b69483e19c0adb45f
Author: Josh Stone <jistone@redhat.com>
Date:   Mon Jul 23 15:28:48 2012 -0700

    stapdyn: update configury for newer dyninst master
    
    - Dyninst install path now uses plain $prefix/lib
    - More libraries are now required in linking

commit b5d37db9162c7168f7aa58e2d59d01f561492596
Author: Josh Stone <jistone@redhat.com>
Date:   Mon Jul 23 15:31:05 2012 -0400

    stapdyn: include limits.h for PATH_MAX

commit a738319611d44938afd47c67aa301486bb70346a
Merge: f34254d ffbe634
Author: Josh Stone <jistone@redhat.com>
Date:   Mon Jul 23 14:56:54 2012 -0700

    Merge branch 'jistone/stapdyn'

-----------------------------------------------------------------------

Summary of changes:
 Makefile.am                                |   18 +
 Makefile.in                                |   82 ++++-
 buildrun.cxx                               |   61 +++-
 cache.cxx                                  |    8 +-
 cmdline.cxx                                |    1 +
 cmdline.h                                  |    1 +
 config.in                                  |    3 +
 configure                                  |   75 ++++
 configure.ac                               |   33 ++
 doc/Makefile.in                            |    2 +
 doc/SystemTap_Tapset_Reference/Makefile.in |    2 +
 doc/beginners/Makefile.in                  |    2 +
 hash.cxx                                   |    2 +-
 main.cxx                                   |   10 +-
 run-stap.in                                |    3 +-
 runtime/addr-map.c                         |  206 +----------
 runtime/alloc.c                            |  454 +---------------------
 runtime/arith.c                            |  573 +---------------------------
 runtime/copy.c                             |  164 +--------
 runtime/debug.h                            |   64 +---
 runtime/dyninst/addr-map.c                 |   10 +
 runtime/dyninst/alloc.c                    |   42 ++
 runtime/dyninst/arith.c                    |   84 ++++
 runtime/dyninst/copy.c                     |   19 +
 runtime/dyninst/debug.h                    |   15 +
 runtime/dyninst/io.c                       |   27 ++
 runtime/dyninst/loc2c-runtime.h            |    5 +
 runtime/dyninst/print.c                    |   72 ++++
 runtime/dyninst/probe_lock.h               |   76 ++++
 runtime/dyninst/runtime.h                  |  289 ++++++++++++++
 runtime/dyninst/runtime_defines.h          |    1 +
 runtime/dyninst/sym.c                      |    2 +
 runtime/dyninst/uprobes.c                  |   35 ++
 runtime/io.c                               |  139 +-------
 runtime/{ => linux}/access_process_vm.h    |    0
 runtime/linux/addr-map.c                   |  222 +++++++++++
 runtime/linux/alloc.c                      |  470 ++++++++++++++++++++++
 runtime/linux/arith.c                      |  589 ++++++++++++++++++++++++++++
 runtime/linux/copy.c                       |  180 +++++++++
 runtime/linux/debug.h                      |   79 ++++
 runtime/linux/io.c                         |  155 ++++++++
 runtime/linux/print.c                      |  262 ++++++++++++
 runtime/linux/probe_lock.h                 |   72 ++++
 runtime/linux/runtime.h                    |    2 +-
 runtime/loc2c-runtime.h                    |    2 +
 runtime/print.c                            |  246 +------------
 runtime/probe_lock.h                       |   55 +---
 runtime/runtime.h                          |    7 +-
 runtime/runtime_defines.h                  |   12 +
 runtime/stp_string.c                       |  174 ++++++++
 runtime/stp_string.h                       |   45 +++
 runtime/string.c                           |  174 --------
 runtime/string.h                           |   45 ---
 runtime/sym.c                              |    2 +-
 runtime/vma.c                              |    2 +-
 session.cxx                                |   27 ++-
 session.h                                  |    4 +
 stapdyn/README                             |   39 ++
 stapdyn/TODO                               |   64 +++
 stapdyn/dynsdt.cxx                         |  388 ++++++++++++++++++
 stapdyn/stapdyn.cxx                        |  234 +++++++++++
 staprun/Makefile.in                        |    2 +
 tapsets.cxx                                |  111 +++++-
 translate.cxx                              |   23 +-
 64 files changed, 4153 insertions(+), 2114 deletions(-)
 create mode 100644 runtime/dyninst/addr-map.c
 create mode 100644 runtime/dyninst/alloc.c
 create mode 100644 runtime/dyninst/arith.c
 create mode 100644 runtime/dyninst/copy.c
 create mode 100644 runtime/dyninst/debug.h
 create mode 100644 runtime/dyninst/io.c
 create mode 100644 runtime/dyninst/loc2c-runtime.h
 create mode 100644 runtime/dyninst/perf.c
 create mode 100644 runtime/dyninst/print.c
 create mode 100644 runtime/dyninst/probe_lock.h
 create mode 100644 runtime/dyninst/regs-ia64.c
 create mode 100644 runtime/dyninst/regs.c
 create mode 100644 runtime/dyninst/runtime.h
 create mode 100644 runtime/dyninst/runtime_defines.h
 create mode 100644 runtime/dyninst/sym.c
 create mode 100644 runtime/dyninst/task_finder.c
 create mode 100644 runtime/dyninst/unwind.c
 create mode 100644 runtime/dyninst/uprobes.c
 rename runtime/{ => linux}/access_process_vm.h (100%)
 create mode 100644 runtime/linux/addr-map.c
 create mode 100644 runtime/linux/alloc.c
 create mode 100644 runtime/linux/arith.c
 create mode 100644 runtime/linux/copy.c
 create mode 100644 runtime/linux/debug.h
 create mode 100644 runtime/linux/io.c
 create mode 100644 runtime/linux/print.c
 create mode 100644 runtime/linux/probe_lock.h
 create mode 100644 runtime/linux/runtime_defines.h
 create mode 100644 runtime/stp_string.c
 create mode 100644 runtime/stp_string.h
 delete mode 100644 runtime/string.c
 delete mode 100644 runtime/string.h
 create mode 100644 stapdyn/README
 create mode 100644 stapdyn/TODO
 create mode 100644 stapdyn/dynsdt.cxx
 create mode 100644 stapdyn/stapdyn.cxx


hooks/post-receive
--
systemtap: system-wide probe/trace tool


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]