diff options
author | 2002-08-09 22:42:18 +0000 | |
---|---|---|
committer | 2002-08-09 22:42:18 +0000 | |
commit | d0e12813d112231a15c4231b3761a4e9f48e7536 (patch) | |
tree | 43b0224ad05cee5ef3c04735787778cd6d000bdb | |
parent | typo (diff) | |
download | wireguard-openbsd-d0e12813d112231a15c4231b3761a4e9f48e7536.tar.xz wireguard-openbsd-d0e12813d112231a15c4231b3761a4e9f48e7536.zip |
Be more explitic that extent_free on EX_NOCOALESCE extents (assuming
otherwise valid arguments) cannot fail.
-rw-r--r-- | share/man/man9/extent.9 | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/share/man/man9/extent.9 b/share/man/man9/extent.9 index bdedd530b3f..a9596294bff 100644 --- a/share/man/man9/extent.9 +++ b/share/man/man9/extent.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: extent.9,v 1.6 2001/10/05 05:07:47 millert Exp $ +.\" $OpenBSD: extent.9,v 1.7 2002/08/09 22:42:18 jason Exp $ .\" $NetBSD: extent.9,v 1.15 1999/03/16 00:40:47 garbled Exp $ .\" .\" Copyright (c) 1996, 1998 The NetBSD Foundation, Inc. @@ -266,6 +266,10 @@ If the extent has the .Dv EX_NOCOALESCE property and the caller attempts to free a partial region, behavior is undefined. +If called on an extent without the +.Dv EX_NOCOALESCE +property, this function can fail with error codes listed below, otherwise +this function will always succeed. .Pp .Fn extent_print Prints out information about extent |