svn commit: r270251 - head/share/man/man9

Gavin Atkinson gavin at FreeBSD.org
Wed Aug 20 23:29:35 UTC 2014


Author: gavin
Date: Wed Aug 20 23:29:34 2014
New Revision: 270251
URL: http://svnweb.freebsd.org/changeset/base/270251

Log:
  Fix return type of callout_init_rm() and add return type to
  callout_deactivate().
  
  PR:		192520
  Submitted by:	yaneurabeya gmail com
  MFC after:	3 days

Modified:
  head/share/man/man9/timeout.9

Modified: head/share/man/man9/timeout.9
==============================================================================
--- head/share/man/man9/timeout.9	Wed Aug 20 23:09:27 2014	(r270250)
+++ head/share/man/man9/timeout.9	Wed Aug 20 23:29:34 2014	(r270251)
@@ -29,7 +29,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd July 17, 2014
+.Dd August 21, 2014
 .Dt TIMEOUT 9
 .Os
 .Sh NAME
@@ -74,7 +74,7 @@ struct callout_handle handle = CALLOUT_H
 .Fn callout_init "struct callout *c" "int mpsafe"
 .Ft void
 .Fn callout_init_mtx "struct callout *c" "struct mtx *mtx" "int flags"
-.Fn void
+.Ft void
 .Fn callout_init_rm "struct callout *c" "struct rmlock *rm" "int flags"
 .Ft void
 .Fn callout_init_rw "struct callout *c" "struct rwlock *rw" "int flags"
@@ -103,6 +103,7 @@ struct callout_handle handle = CALLOUT_H
 .Fn callout_pending "struct callout *c"
 .Ft int
 .Fn callout_active "struct callout *c"
+.Ft void
 .Fn callout_deactivate "struct callout *c"
 .Sh DESCRIPTION
 The function


More information about the svn-src-all mailing list