From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25430 invoked by alias); 29 Jun 2010 17:02:18 -0000 Received: (qmail 25394 invoked by uid 448); 29 Jun 2010 17:02:16 -0000 Date: Tue, 29 Jun 2010 17:02:00 -0000 Message-ID: <20100629170216.25381.qmail@sourceware.org> From: brolley@sourceware.org To: systemtap-cvs@sourceware.org Subject: [SCM] systemtap: system-wide probe/trace tool branch, master, updated. release-1.2-373-gbf5e9f8 X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 82ea0c96760eba1a1f521c007b9353e7e568906b X-Git-Newrev: bf5e9f81fb54a1e9b8c6d09d99ac14d3cbc22c1b Mailing-List: contact systemtap-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: systemtap-cvs-owner@sourceware.org List-Archive: Reply-To: systemtap@sourceware.org X-SW-Source: 2010-q2/txt/msg00254.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 "systemtap: system-wide probe/trace tool". The branch, master has been updated via bf5e9f81fb54a1e9b8c6d09d99ac14d3cbc22c1b (commit) via bb153adb0ce698c83ab84e42d012a31a1d047298 (commit) via 131f914eef331905ddb4eaa015e2026b83cb85bd (commit) via 85007c04ea94f8fd4df6bf64f227e717a3e966d8 (commit) via f3fbabf296eead427508a1f3a4405eb312d0e87b (commit) via 2fad97fda46ad7d92101643ced2113fc36869099 (commit) via aa4d21c0e5cf16a7c60dbcb4a17f80c79a9edeba (commit) via 2dce8c4247d8cf1ca6e44bbf278b0ae6a84316e5 (commit) from 82ea0c96760eba1a1f521c007b9353e7e568906b (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 bf5e9f81fb54a1e9b8c6d09d99ac14d3cbc22c1b Author: Dave Brolley Date: Tue Jun 29 12:37:00 2010 -0400 Run compile client/server tests using the new integrated client. commit bb153adb0ce698c83ab84e42d012a31a1d047298 Author: Dave Brolley Date: Thu Jun 24 16:37:29 2010 -0400 Fix erroneous artifacts of git rebase. commit 131f914eef331905ddb4eaa015e2026b83cb85bd Author: Dave Brolley Date: Tue Jun 22 14:01:59 2010 -0400 Compile Server Client merge into stap: Use errno to diagnose stream problems if it is set during the operation. commit 85007c04ea94f8fd4df6bf64f227e717a3e966d8 Author: Dave Brolley Date: Mon Jun 14 15:19:43 2010 -0400 Reword compile server client merge into stap based on feedback received: - Move server related utility methods out of systemtap_session - Move other utility methods back out of systemtap_session and back into the top level of main.cxx - Move pending_interrupts out of systemtap_session and back to top level. - Initialize systemtap_session in the constructor - Move server argument collection out of main options switch. commit f3fbabf296eead427508a1f3a4405eb312d0e87b Author: Dave Brolley Date: Tue Jun 8 14:57:50 2010 -0400 Merged compile server client: Cleanup error handling. commit 2fad97fda46ad7d92101643ced2113fc36869099 Author: Dave Brolley Date: Tue Jun 1 14:51:53 2010 -0400 Merged compile server client: Basic implementation. o client automatically detects compatible online servers o request package created, zipped and sent to the server o response unzipped and processed o staprun called, if requsted o command line options filtered and passed to the server in the request package o --unprivileged is handled commit aa4d21c0e5cf16a7c60dbcb4a17f80c79a9edeba Author: Dave Brolley Date: Fri May 21 15:52:32 2010 -0400 More compile server client merge infrastructure: - Make phase management functions methods of systemtap_session - Make phase management globals static members of systemtap_session - Create skeletal compile_server_client class commit 2dce8c4247d8cf1ca6e44bbf278b0ae6a84316e5 Author: Dave Brolley Date: Fri May 21 14:09:26 2010 -0400 Begin compile server client merge into stap: - Detect presence of avahi-client library and headers during configuration - Use avahi-client API to detect online servers - Implement --server-status=online,compatible ----------------------------------------------------------------------- Summary of changes: Makefile.am | 13 +- Makefile.in | 143 +++- aclocal.m4 | 4 +- config.in | 3 + configure | 332 ++++++++- configure.ac | 50 +- csclient.cxx | 1130 ++++++++++++++++++++++++++++ csclient.h | 76 ++ main.cxx | 178 +++-- session.cxx | 494 +++++++++++- session.h | 55 +- stap-client-connect.c | 44 +- testsuite/lib/stap_run.exp | 1 + testsuite/lib/systemtap.exp | 37 +- testsuite/systemtap.server/server_args.exp | 2 + util.cxx | 26 + util.h | 1 + 17 files changed, 2348 insertions(+), 241 deletions(-) create mode 100644 csclient.cxx create mode 100644 csclient.h hooks/post-receive -- systemtap: system-wide probe/trace tool