| Summary: | [patch] timer_create(2): incorrect structure member name | ||||||
|---|---|---|---|---|---|---|---|
| Product: | Documentation | Reporter: | Thomas Mueller <tmueller> | ||||
| Component: | Books & Articles | Assignee: | Daniel Gerzo <danger> | ||||
| Status: | Closed FIXED | ||||||
| Severity: | Affects Only Me | ||||||
| Priority: | Normal | ||||||
| Version: | Latest | ||||||
| Hardware: | Any | ||||||
| OS: | Any | ||||||
| Attachments: |
|
||||||
|
Description
Thomas Mueller
2009-01-12 11:10:00 UTC
Responsible Changed From-To: freebsd-doc->danger Grab 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" State Changed From-To: open->patched - Fixed in head/, awaiting MFC 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 MFC'ed to stable/7. Thank you for your submission! |