From owner-svn-src-all@freebsd.org Tue Jun 30 19:00:33 2015 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7343199089C; Tue, 30 Jun 2015 19:00:33 +0000 (UTC) (envelope-from chmeeedalf@gmail.com) Received: from mail-ie0-x232.google.com (mail-ie0-x232.google.com [IPv6:2607:f8b0:4001:c03::232]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 40675118F; Tue, 30 Jun 2015 19:00:33 +0000 (UTC) (envelope-from chmeeedalf@gmail.com) Received: by ieqy10 with SMTP id y10so19270764ieq.0; Tue, 30 Jun 2015 12:00:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=Nc5IwEQ/X/9dxoEIfBqmQJxscXilG2xQmp9NIfaUKFE=; b=bZaRjcCKje8QlDdVK4hdv2qwMmRQSW0r3vt6W08Ep64Xo0k2bCrLWMS10TiCGG9SPO MkAqt1cysWspP8Mi+84AbwA+Z/P5wHUpzK6b/llSZ2YWlKBgSFQ47I0Utz6ZlBREsDJh GWRXobYMUJvez0PJ1+lKNZX6ucmnWF8aOm/fmiBINNS0AhPbtgvO/ZcxTqtRnzqFvrK/ xt6zwa0mzcESyyEfzwwKqY/9VFea3KatsJPOUxZWMpzNr23hY7OC08K/bvrbVauRUhI4 GP9WfXSltQfuum7uyad8Yr6jMAdQK3BAdm4W1hKcYH7m+haRrUrYA2S0YGzcF/rrA5Dl bUug== MIME-Version: 1.0 X-Received: by 10.50.176.194 with SMTP id ck2mr26244959igc.2.1435690832393; Tue, 30 Jun 2015 12:00:32 -0700 (PDT) Sender: chmeeedalf@gmail.com Received: by 10.36.69.80 with HTTP; Tue, 30 Jun 2015 12:00:32 -0700 (PDT) In-Reply-To: <201506301853.t5UIrgrC060955@svn.freebsd.org> References: <201506301853.t5UIrgrC060955@svn.freebsd.org> Date: Tue, 30 Jun 2015 12:00:32 -0700 X-Google-Sender-Auth: d5GjCsqSW0wTctLf3OCDvgMGPxg Message-ID: Subject: Re: svn commit: r284965 - head/lib/libc/sys From: Justin Hibbits To: Konstantin Belousov Cc: src-committers , "svn-src-all@freebsd.org" , "svn-src-head@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Jun 2015 19:00:33 -0000 On Tue, Jun 30, 2015 at 11:53 AM, Konstantin Belousov wrote: > Author: kib > Date: Tue Jun 30 18:53:42 2015 > New Revision: 284965 > URL: https://svnweb.freebsd.org/changeset/base/284965 > > Log: > Document x86 machine-specific ptrace(2) requests. Provide list of the > ppc requests. > > Reviewed by: brueffer, emaste, gjb (previous version) > Sponsored by: The FreeBSD Foundation > Review: https://reviews.freebsd.org/D2962 > MFC after: 2 weeks > > Modified: > head/lib/libc/sys/ptrace.2 > ... > +.Sh PowerPC MACHINE-SPECIFIC REQUESTS > +.Bl -tag -width "Dv PT_SETVRREGS" > +.It Dv PT_GETVRREGS > +Returns the > +.Dv ALTIVEC > +machine state for the thread into the buffer pointed to by > +the argument > +.Fa addr . > +.Pp > +The > +.Fa data > +argument is ignored. > +.It Dv PT_SETVRREGS > +Set the > +.Dv ALTIVEC > +machine state for the thread from the buffer pointed to by > +the argument > +.Fa addr . > +.Pp > +The > +.Fa data > +argument is ignored. > +.El > +.Pp Thanks for documenting these. I'm way too lazy for my own good when it comes to documentation. - Justin