diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2015-11-26 13:08:19 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2015-11-26 13:08:19 +0000 |
commit | c3dc851d8ae43999d94fdba0b79a1bb4369b1c89 (patch) | |
tree | 487a8869d5a35d92ae9c662322e16921ec21a3a7 /share | |
parent | 03f33cd9d2084aaebfe8ad9e8cdf3769df05727b (diff) |
mlink for SRPL_FOREACH_SAFE_LOCKED and tweak its description;
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man9/Makefile | 3 | ||||
-rw-r--r-- | share/man/man9/srpl_rc_init.9 | 6 |
2 files changed, 5 insertions, 4 deletions
diff --git a/share/man/man9/Makefile b/share/man/man9/Makefile index 305455b1f06..bd94df76317 100644 --- a/share/man/man9/Makefile +++ b/share/man/man9/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.263 2015/11/25 16:20:36 jmc Exp $ +# $OpenBSD: Makefile,v 1.264 2015/11/26 13:08:18 jmc Exp $ # $NetBSD: Makefile,v 1.4 1996/01/09 03:23:01 thorpej Exp $ # Makefile for section 9 (kernel function and variable) manual pages. @@ -383,6 +383,7 @@ MLINKS+=srpl_rc_init.9 SRPL_ENTER.9 \ srpl_rc_init.9 SRPL_LEAVE.9 srpl_rc_init.9 SRPL_EMPTY_LOCKED.9 \ srpl_rc_init.9 SRPL_FIRST_LOCKED.9 srpl_rc_init.9 SRPL_NEXT_LOCKED.9 \ srpl_rc_init.9 SRPL_FOREACH_LOCKED.9 \ + srpl_rc_init.9 SRPL_FOREACH_SAFE_LOCKED.9 \ srpl_rc_init.9 SRPL_INSERT_HEAD_LOCKED.9 \ srpl_rc_init.9 SRPL_INSERT_AFTER_LOCKED.9 \ srpl_rc_init.9 SRPL_REMOVE_LOCKED.9 \ diff --git a/share/man/man9/srpl_rc_init.9 b/share/man/man9/srpl_rc_init.9 index 822246313b1..ab726e3e41a 100644 --- a/share/man/man9/srpl_rc_init.9 +++ b/share/man/man9/srpl_rc_init.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: srpl_rc_init.9,v 1.7 2015/11/26 12:17:19 mpi Exp $ +.\" $OpenBSD: srpl_rc_init.9,v 1.8 2015/11/26 13:08:18 jmc Exp $ .\" .\" Copyright (c) 2015 David Gwynne <dlg@openbsd.org> .\" @@ -184,8 +184,8 @@ creates a loop for traversing the elements in the SRP list .Pp .Fn SRPL_FOREACH_SAFE_LOCKED creates a loop for traversing the elements in the SRP list -.Fa sl -permitting to remove +.Fa sl , +permitting it to remove .Fa VARNAME as well as freeing it from within the loop safely without interfering with the traversal. |