From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14743 invoked by alias); 2 Aug 2012 15:01:46 -0000 Received: (qmail 14695 invoked by uid 9156); 2 Aug 2012 15:01:44 -0000 Date: Thu, 02 Aug 2012 15:01:00 -0000 Message-ID: <20120802150144.14684.qmail@sourceware.org> From: dsmith@sourceware.org To: systemtap-cvs@sourceware.org Subject: [SCM] systemtap: system-wide probe/trace tool branch, master, updated. release-1.8-125-g0e0e60b X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 9d2b21df1694ef312a2312a3fd6e7d046dcdf672 X-Git-Newrev: 0e0e60b276f6a839b56d302e31432adaa0f02440 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: 2012-q3/txt/msg00071.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 0e0e60b276f6a839b56d302e31432adaa0f02440 (commit) from 9d2b21df1694ef312a2312a3fd6e7d046dcdf672 (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 0e0e60b276f6a839b56d302e31432adaa0f02440 Author: David Smith Date: Thu Aug 2 10:01:23 2012 -0500 Fixed PR14427 by handling old and new task_work interface. * runtime/linux/autoconf-utrace-via-tracepoints.c: Just includes task_work.h to determine existence of task_work feature. * runtime/linux/autoconf-task_work-struct.c: New file. * buildrun.cxx (compile_pass): Add autoconf-task_work-struct test. * runtime/linux/task_work_compatibility.h: New header that mask differences between old task_work interface and new one. * runtime/linux/task_finder2.c: Handle removal of 'data' parameter from task_work struct by embedding stap_task_finder_target in __stp_tf_task_work structure. * runtime/stp_task_work.c: Include task_work_compatibility.h instead of task_work.h. * runtime/stp_utrace.c (utrace_task_alloc): Update init_task_work() function call to compatibility function call. ----------------------------------------------------------------------- Summary of changes: buildrun.cxx | 1 + runtime/linux/autoconf-task_work-struct.c | 10 +++++ runtime/linux/autoconf-utrace-via-tracepoints.c | 11 +---- runtime/linux/task_finder2.c | 21 +++++++--- runtime/linux/task_work_compatibility.h | 46 +++++++++++++++++++++++ runtime/stp_task_work.c | 2 +- runtime/stp_utrace.c | 2 +- 7 files changed, 75 insertions(+), 18 deletions(-) create mode 100644 runtime/linux/autoconf-task_work-struct.c create mode 100644 runtime/linux/task_work_compatibility.h hooks/post-receive -- systemtap: system-wide probe/trace tool