From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25894 invoked by alias); 29 Jul 2011 11:40:55 -0000 Received: (qmail 25862 invoked by uid 9112); 29 Jul 2011 11:40:54 -0000 Date: Fri, 29 Jul 2011 11:40:00 -0000 Message-ID: <20110729114054.25851.qmail@sourceware.org> From: mark@sourceware.org To: systemtap-cvs@sourceware.org Subject: [SCM] systemtap: system-wide probe/trace tool branch, master, updated. release-1.6-35-ga34a9fe X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: fcb496ceac00d00e611a2e98080820f81aef0b1c X-Git-Newrev: a34a9fe036c9c6f06452eb893590a6984949dc95 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: 2011-q3/txt/msg00121.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 a34a9fe036c9c6f06452eb893590a6984949dc95 (commit) from fcb496ceac00d00e611a2e98080820f81aef0b1c (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 a34a9fe036c9c6f06452eb893590a6984949dc95 Author: Mark Wielaard Date: Fri Jul 29 13:35:06 2011 +0200 Put common probe and session context state definitions in their own files. translate.cxx contained code to produce the common probe and session context state as C code snippets. Large parts were not dependent on the session state at all, so they really were just static blobs of C code wrapped in c++ io stream operators. These have been put in their own C runtime header files (common_session_state.h, common_probe_context.h and runtime_defines.h) to make it easier to edit and document. ----------------------------------------------------------------------- Summary of changes: runtime/common_probe_context.h | 61 ++++++++++++++++++++ runtime/common_session_state.h | 15 +++++ runtime/regs.h | 4 + runtime/runtime_defines.h | 58 +++++++++++++++++++ translate.cxx | 123 ++++------------------------------------ 5 files changed, 149 insertions(+), 112 deletions(-) create mode 100644 runtime/common_probe_context.h create mode 100644 runtime/common_session_state.h create mode 100644 runtime/runtime_defines.h hooks/post-receive -- systemtap: system-wide probe/trace tool