From: Sascha Wildner Date: Fri, 23 Dec 2011 14:51:00 +0000 (+0100) Subject: store.9: Add a line about suword32(). X-Git-Tag: v3.0.0~311 X-Git-Url: http://gitweb.dragonflybsd.org/dragonfly.git/commitdiff_plain/701e05820ec80b00089f2b984aca9b194b7a7ce2 store.9: Add a line about suword32(). --- diff --git a/share/man/man9/Makefile b/share/man/man9/Makefile index 9e7966e..5986de9 100644 --- a/share/man/man9/Makefile +++ b/share/man/man9/Makefile @@ -801,7 +801,8 @@ MLINKS+=spinlock.9 spin_init.9 \ MLINKS+=store.9 casuword.9 \ store.9 subyte.9 \ store.9 susword.9 \ - store.9 suword.9 + store.9 suword.9 \ + store.9 suword32.9 MLINKS+=syscall.9 syscalls.master.5 MLINKS+=sysctl.9 SYSCTL_DECL.9 \ sysctl.9 SYSCTL_INT.9 \ diff --git a/share/man/man9/store.9 b/share/man/man9/store.9 index 5a968cc..674f968 100644 --- a/share/man/man9/store.9 +++ b/share/man/man9/store.9 @@ -33,9 +33,8 @@ .\" SUCH DAMAGE. .\" .\" $FreeBSD: src/share/man/man9/store.9,v 1.7.2.4 2001/12/17 11:30:19 ru Exp $ -.\" $DragonFly: src/share/man/man9/store.9,v 1.4 2007/04/07 19:29:52 swildner Exp $ .\" -.Dd August 2, 2010 +.Dd December 23, 2011 .Dt STORE 9 .Os .Sh NAME @@ -43,7 +42,8 @@ .Nm casuword , .Nm subyte , .Nm susword , -.Nm suword +.Nm suword , +.Nm suword32 .Nd store data to user-space .Sh SYNOPSIS .In sys/types.h @@ -58,6 +58,8 @@ .Fn susword "void *base" "int word" .Ft int .Fn suword "void *base" "long word" +.Ft int +.Fn suword32 "void *base" "int word" .Sh DESCRIPTION The .Nm @@ -88,6 +90,10 @@ Stores a short word of data to the user-space address .It Fn suword Stores a word of data to the user-space address .Fa base . +.It Fn suword32 +Like +.Fn suword , +for cases when 32 bits are desired. .El .Sh RETURN VALUES The