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.4-69-g5ef28d5


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  5ef28d5a05b33a87e7bcc63f2bfaf3b68d0dd1c4 (commit)
       via  20f90026bb38608bc4fea2e943d0514dee3b7fc8 (commit)
      from  b63fab8739c5c6d6a83c5225682fb64cebd7b208 (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 5ef28d5a05b33a87e7bcc63f2bfaf3b68d0dd1c4
Author: Josh Stone <jistone@redhat.com>
Date:   Thu Feb 10 19:09:25 2011 -0800

    Allow capitals in @cast headers
    
    The conversion to regexp_match lost the REG_ICASE, so we need to
    manually allow capitals in the regular expression.
    
    * buildrun.cxx (make_typequery): Add A-Z to the character class.

commit 20f90026bb38608bc4fea2e943d0514dee3b7fc8
Author: Josh Stone <jistone@redhat.com>
Date:   Thu Feb 10 18:46:19 2011 -0800

    Start using arg vectors for stap_system and friends
    
    Instead of worrying about quoting properly in every command string, we
    can rest easier by launching processes with a proper argv[].  All of the
    stap_system-like functions are converted, but a flat-string stap_system
    is also kept around for now while callers are converted.
    
    * util.cxx (stap_spawn): Take a vector<string> for command arguments,
      convert that to an argv[], and use that for posix_spawnp.  Note the
      conversion to spawnp as well so PATH-searching is still performed.
      (stap_system, stap_system_read): Convert to vectors, but keep a flat
      version of the former for compatibility.
      (probe stap_system__start): Move to stap_spawn, to probe all flavors.
      (probe stap_system__complete): Likewise, move to stap_waitpid, to
      probe when any process is finished; add a pid to track who's done.
    * remote.cxx (direct, ssh_remote): Convert all calls to vector form.

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

Summary of changes:
 buildrun.cxx |    2 +-
 buildrun.h   |    2 +-
 remote.cxx   |   64 +++++++++++++++++++++++++++++++++++++++++----------------
 util.cxx     |   54 +++++++++++++++++++++++++++++-------------------
 util.h       |    7 +++--
 5 files changed, 85 insertions(+), 44 deletions(-)


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]