From nobody@FreeBSD.org  Mon Jan 12 11:09:03 2009
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 353DC1065798
	for <freebsd-gnats-submit@FreeBSD.org>; Mon, 12 Jan 2009 11:09:03 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21])
	by mx1.freebsd.org (Postfix) with ESMTP id 27CB38FC0A
	for <freebsd-gnats-submit@FreeBSD.org>; Mon, 12 Jan 2009 11:09:02 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from www.freebsd.org (localhost [127.0.0.1])
	by www.freebsd.org (8.14.3/8.14.3) with ESMTP id n0CB91u3052125
	for <freebsd-gnats-submit@FreeBSD.org>; Mon, 12 Jan 2009 11:09:01 GMT
	(envelope-from nobody@www.freebsd.org)
Received: (from nobody@localhost)
	by www.freebsd.org (8.14.3/8.14.3/Submit) id n0CB91EQ052124;
	Mon, 12 Jan 2009 11:09:01 GMT
	(envelope-from nobody)
Message-Id: <200901121109.n0CB91EQ052124@www.freebsd.org>
Date: Mon, 12 Jan 2009 11:09:01 GMT
From: "Thomas Mueller <Thomas Mueller" <tmueller@sysgo.com>
To: freebsd-gnats-submit@FreeBSD.org
Subject: [patch] timer_create(2): incorrect structure member name
X-Send-Pr-Version: www-3.1
X-GNATS-Notify:

>Number:         130413
>Category:       docs
>Synopsis:       [patch] timer_create(2): incorrect structure member name
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    danger
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          doc-bug
>Submitter-Id:   current-users
>Arrival-Date:   Mon Jan 12 11:10:00 UTC 2009
>Closed-Date:    Mon Jan 19 11:17:33 UTC 2009
>Last-Modified:  Mon Jan 19 11:17:33 UTC 2009
>Originator:     Thomas Mueller
>Release:        7.1-STABLE
>Organization:
>Environment:
FreeBSD tom.ulm.sysgo.com 7.1-STABLE FreeBSD 7.1-STABLE #1: Thu Jan  8 17:21:04 CET 2009     toor@tom.ulm.sysgo.com:/usr/obj/usr/src/sys/GENERIC  amd64

>Description:
The manual page for timer_create(2) incorrectly refers to a structure member 'sigev_sigev_notify' in the sigevent structure.
The name should be 'sigev_notify' instead.
>How-To-Repeat:
man timer_create
>Fix:
Index: timer_create.2
===================================================================
RCS file: /usr/home/tmu/repos/FreeBSD/repo/src/lib/libc/sys/timer_create.2,v
retrieving revision 1.9
diff -u -p -r1.9 timer_create.2
--- timer_create.2      18 Jun 2007 01:50:03 -0000      1.9
+++ timer_create.2      12 Jan 2009 11:01:57 -0000
@@ -100,7 +100,7 @@ or
 .Dv CLOCK_MONOTONIC .
 .Pp
 If
-.Fa evp->sigev_sigev_notify
+.Fa evp->sigev_notify
 is
 .Dv SIGEV_THREAD
 and


>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-doc->danger 
Responsible-Changed-By: danger 
Responsible-Changed-When: Mon Jan 12 11:24:44 UTC 2009 
Responsible-Changed-Why:  
Grab 

http://www.freebsd.org/cgi/query-pr.cgi?pr=130413 
State-Changed-From-To: open->patched 
State-Changed-By: danger 
State-Changed-When: Mon Jan 12 13:12:24 UTC 2009 
State-Changed-Why:  
- Fixed in head/, awaiting MFC 

http://www.freebsd.org/cgi/query-pr.cgi?pr=130413 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: docs/130413: commit references a PR
Date: Mon, 12 Jan 2009 13:12:18 +0000 (UTC)

 Author: danger (doc committer)
 Date: Mon Jan 12 13:12:02 2009
 New Revision: 187098
 URL: http://svn.freebsd.org/changeset/base/187098
 
 Log:
   - add missing include
   - fix struct memeber's name [1]
   
   PR:		docs/130413 [1]
   Submitted by:	Thomas Mueller <tmueller@sysgo.com> [1]
   MFC after:	3 days
 
 Modified:
   head/lib/libc/sys/timer_create.2
 
 Modified: head/lib/libc/sys/timer_create.2
 ==============================================================================
 --- head/lib/libc/sys/timer_create.2	Mon Jan 12 11:53:38 2009	(r187097)
 +++ head/lib/libc/sys/timer_create.2	Mon Jan 12 13:12:02 2009	(r187098)
 @@ -27,7 +27,7 @@
  .\"
  .\" $FreeBSD$
  .\"
 -.Dd September 11, 2000
 +.Dd January 12, 2009
  .Dt TIMER_CREATE 2
  .Os
  .Sh NAME
 @@ -37,6 +37,7 @@
  .Lb librt
  .Sh SYNOPSIS
  .In time.h
 +.In signal.h
  .Ft int
  .Fo timer_create
  .Fa "clockid_t clockid" "struct sigevent *restrict evp"
 @@ -100,7 +101,7 @@ or
  .Dv CLOCK_MONOTONIC .
  .Pp
  If
 -.Fa evp->sigev_sigev_notify
 +.Fa evp->sigev_notify
  is
  .Dv SIGEV_THREAD
  and
 _______________________________________________
 svn-src-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: docs/130413: commit references a PR
Date: Sun, 18 Jan 2009 21:40:30 +0000 (UTC)

 Author: danger (doc committer)
 Date: Sun Jan 18 21:40:15 2009
 New Revision: 187411
 URL: http://svn.freebsd.org/changeset/base/187411
 
 Log:
   MFC r187098:
   
   - add missing include [2]
   - fix struct memeber's name [1]
   
   PR:		docs/130413 [1]
   Submitted by:	Thomas Mueller <tmueller@sysgo.com> [1], rink@ [2]
 
 Modified:
   stable/7/lib/libc/   (props changed)
   stable/7/lib/libc/string/ffsll.c   (props changed)
   stable/7/lib/libc/string/flsll.c   (props changed)
   stable/7/lib/libc/sys/timer_create.2
 
 Modified: stable/7/lib/libc/sys/timer_create.2
 ==============================================================================
 --- stable/7/lib/libc/sys/timer_create.2	Sun Jan 18 21:09:34 2009	(r187410)
 +++ stable/7/lib/libc/sys/timer_create.2	Sun Jan 18 21:40:15 2009	(r187411)
 @@ -27,7 +27,7 @@
  .\"
  .\" $FreeBSD$
  .\"
 -.Dd September 11, 2000
 +.Dd January 12, 2009
  .Dt TIMER_CREATE 2
  .Os
  .Sh NAME
 @@ -37,6 +37,7 @@
  .Lb librt
  .Sh SYNOPSIS
  .In time.h
 +.In signal.h
  .Ft int
  .Fo timer_create
  .Fa "clockid_t clockid" "struct sigevent *restrict evp"
 @@ -100,7 +101,7 @@ or
  .Dv CLOCK_MONOTONIC .
  .Pp
  If
 -.Fa evp->sigev_sigev_notify
 +.Fa evp->sigev_notify
  is
  .Dv SIGEV_THREAD
  and
 _______________________________________________
 svn-src-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
 
State-Changed-From-To: patched->closed 
State-Changed-By: danger 
State-Changed-When: Mon Jan 19 11:17:06 UTC 2009 
State-Changed-Why:  
MFC'ed to stable/7. 

Thank you for your submission! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=130413 
>Unformatted:
