From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14724 invoked by alias); 14 May 2007 16:47:17 -0000 Received: (qmail 14713 invoked by uid 22791); 14 May 2007 16:47:16 -0000 X-Spam-Status: No, hits=-1.3 required=5.0 tests=AWL,BAYES_40,DK_POLICY_SIGNSOME,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org (qpsmtpd/0.31) with ESMTP; Mon, 14 May 2007 16:47:13 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.13.1/8.13.1) with ESMTP id l4EGlBG9003500 for ; Mon, 14 May 2007 12:47:11 -0400 Received: from pobox.corp.redhat.com (pobox.corp.redhat.com [10.11.255.20]) by int-mx1.corp.redhat.com (8.13.1/8.13.1) with ESMTP id l4EGlBjH005033 for ; Mon, 14 May 2007 12:47:11 -0400 Received: from [127.0.0.1] (sebastian-int.corp.redhat.com [172.16.52.221]) by pobox.corp.redhat.com (8.13.1/8.13.1) with ESMTP id l4EGl9N6018394 for ; Mon, 14 May 2007 12:47:09 -0400 Message-ID: <4648928D.4000607@redhat.com> Date: Mon, 14 May 2007 16:51:00 -0000 From: Andrew Cagney User-Agent: Thunderbird 1.5.0.10 (X11/20070301) MIME-Version: 1.0 To: frysk Subject: moving frysk.proc.LinuxPtrace* to frysk.proc.ptrace.Linux* Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Mailing-List: contact frysk-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: frysk-owner@sourceware.org X-SW-Source: 2007-q2/txt/msg00151.txt.bz2 Just an update and heads up to the on-going task of breaking-out the os-specific code in frysk.proc, moving it to more specialized packages vis: frysk.proc.dummy - a dummy host - "done" frysk.proc.corefile - a host built from core-files - "done" frysk.proc.ptrace - a host built using ptrace(2) calls For frysk.proc.ptrace, there'll likely soon be some interesting fallout: -> as WIP have << frysk.proc.ptrace.LinuxHost extend frysk.proc.LinuxPtraceHost extend frysk.proc.Host >>, (perhaps also similar for Task and Proc?) so that code can more incrementally be switched to the new frysk.proc.ptrace package -> Eliminate methods such as <> from frysk.proc.Task inlining the implementation into frysk.proc.ptrace.LinuxTaskState; they assume "ptrace" semantics which only applies to ptrace -> Add more manipulation methods, such as proc.reparent(Proc) to abstract some of the tree manipulation operations take care, Andrew