From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11261 invoked by alias); 30 Sep 2009 18:54:42 -0000 Received: (qmail 11209 invoked by uid 9639); 30 Sep 2009 18:54:40 -0000 Date: Wed, 30 Sep 2009 18:54:00 -0000 Message-ID: <20090930185440.11196.qmail@sourceware.org> From: moore@sourceware.org To: systemtap-cvs@sourceware.org Subject: [SCM] systemtap: system-wide probe/trace tool branch, master, updated. release-1.0-47-g90b64e1 X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 27993a166c3ff2c33f778da4d96726666aadfab9 X-Git-Newrev: 90b64e1e89a33317d6008e10fe2c106a0dc34c7a 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: 2009-q3/txt/msg00340.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 90b64e1e89a33317d6008e10fe2c106a0dc34c7a (commit) via 4cba1a1a2cb6d5fc03f0f89f480c6761974938af (commit) via 735d2a19eac533188e96a578142c0ec0d1311fdb (commit) via 6248dea71308a565d4b7b11384356e1419e9e52d (commit) via aac88aab720d169bacc49702f18996a5929a7f5d (commit) via 239edc45bc2215485362eda09422e380f02ad0c1 (commit) via eece8f14d92f71fc12ab87c529fffc5fcc5a4e94 (commit) via c18a296b760df73e2c233077aa0b863f67ed725f (commit) via bb91631807ad833a92d011895ad7ca1872e02745 (commit) from 27993a166c3ff2c33f778da4d96726666aadfab9 (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 90b64e1e89a33317d6008e10fe2c106a0dc34c7a Author: Tim Moore Date: Wed Sep 30 19:02:42 2009 +0200 dialog for choosing stap script and providing arguments to stap and the script * grapher/grapher.cxx (GraphicalStapLauncher): New class. (GrapherWindow constructor): Bind actions for graphical launcher buttons (GrapherWindow::setGraphicalLauncher): new method (GrapherWindow::on_menu_script_start): new method grapher/stap-start.glade, grapher/stap-start.gladep: new files grapher/Makefile.am: install stap-start.glade commit 4cba1a1a2cb6d5fc03f0f89f480c6761974938af Author: Tim Moore Date: Wed Sep 23 18:03:00 2009 +0200 classes for launching stap and listening for its death * grapher/grapher.cxx (ChildDeathReader): New class to handle I/O signalling death of a child. (GrapherWindow): Inherit from ChildDeathReader. (StapLauncher): New class for passing arguments to inferior stap process and checking for its demise. (main): Move launching logic to StapLauncher. commit 735d2a19eac533188e96a578142c0ec0d1311fdb Author: Tim Moore Date: Mon Sep 21 22:35:17 2009 +0200 Pass command line arguments on to stap * grapher/grapher.cxx (main): Pass program arguments to stap commit 6248dea71308a565d4b7b11384356e1419e9e52d Author: Tim Moore Date: Wed Sep 16 19:15:21 2009 +0200 cleanup of graph data dialog * grapher/GraphWidget.cxx (on_button_release_event, onDataAdd): tweaks for graph data dialog commit aac88aab720d169bacc49702f18996a5929a7f5d Author: Tim Moore Date: Wed Sep 16 19:06:29 2009 +0200 grapher: Handle the death of the child stap process * grapher/grapher.c (main): Set up signal and i/o handlers to detect death of child. * grapher/StapParser.cxx (errIoCallback): New method commit 239edc45bc2215485362eda09422e380f02ad0c1 Author: Tim Moore Date: Wed Sep 2 15:16:26 2009 +0200 Create lists of graph data to choose commit eece8f14d92f71fc12ab87c529fffc5fcc5a4e94 Author: Tim Moore Date: Wed Sep 2 12:39:05 2009 +0200 Add graph data chooser window, based on glade * configure.ac: Test for libglademm * grapher/GraphWidget.hxx (DataModelColumns): new class (onDataDialogCancel, void onDataAdd, onDataRemove, onDataDialogOpen): new methods * grapher/GraphWidget.cxx: ditto; methods for the graph data dialog. * grapher/graph-dialog.glade: New file. * grapher/graph-dialog.gladep: New file. * grapher/Makefile.am (dist_pkgdata_DATA): add graph-dialog.glade to installation. * grapher/GraphWidget.cxx (GraphWidget constructor): Use PKGDATADIR commit c18a296b760df73e2c233077aa0b863f67ed725f Author: Tim Moore Date: Tue Aug 4 23:46:02 2009 +0200 more multiple graph fixes * grapher/Graph.cxx (Graph constructor): set _drawX, _drawY * grapher/GraphWidget.cxx (addGraph): Fix graph layout (on_button_press_event): Fix test of play button in multiple graphs commit bb91631807ad833a92d011895ad7ca1872e02745 Author: Tim Moore Date: Wed Jul 29 13:11:10 2009 +0200 Draw multiple graphs * grapher/Graph.cxx (Graph constructor): Initialize graph dimensions. (draw): Don't clear the drawing area. * grapher/GraphWidget.hxx (GraphWidget): Add dimensions and on_size_request() method. * grapher/GraphWidget.cxx (GraphWidget constructor): Initialize dimensions. (addGraph): New method. (on_size_request): New method to pass widget's size to parent widgets * grapher/grapher.cxx (GrapherWindow constructor): add "add graph" action. (addGraph): New method. ----------------------------------------------------------------------- Summary of changes: configure | 16 +- configure.ac | 2 +- grapher/Graph.cxx | 9 +- grapher/GraphWidget.cxx | 124 +++++++++++++- grapher/GraphWidget.hxx | 30 ++++- grapher/Makefile.am | 4 +- grapher/Makefile.in | 118 ++++++++++---- grapher/StapParser.cxx | 27 +++- grapher/StapParser.hxx | 7 +- grapher/graph-dialog.glade | 166 +++++++++++++++++++ grapher/graph-dialog.gladep | 8 + grapher/grapher.cxx | 380 ++++++++++++++++++++++++++++++++++++++----- grapher/stap-start.glade | 248 ++++++++++++++++++++++++++++ grapher/stap-start.gladep | 8 + 14 files changed, 1046 insertions(+), 101 deletions(-) create mode 100644 grapher/graph-dialog.glade create mode 100644 grapher/graph-dialog.gladep create mode 100644 grapher/stap-start.glade create mode 100644 grapher/stap-start.gladep hooks/post-receive -- systemtap: system-wide probe/trace tool