From: Sascha Wildner Date: Sat, 10 Feb 2007 20:46:36 +0000 (+0000) Subject: Remove documentation of the recently removed fuswintr() and suswintr() X-Git-Tag: v2.0.1~3530 X-Git-Url: https://gitweb.dragonflybsd.org/dragonfly.git/commitdiff_plain/78bab3dd5e5900e6400b50d56f116d7fc58a3a63 Remove documentation of the recently removed fuswintr() and suswintr() functions. --- diff --git a/etc/Makefile b/etc/Makefile index adaa1ec1a7..c670a81f1f 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,6 +1,6 @@ # from: @(#)Makefile 5.11 (Berkeley) 5/21/91 # $FreeBSD: src/etc/Makefile,v 1.219.2.38 2003/03/04 09:49:00 ru Exp $ -# $DragonFly: src/etc/Makefile,v 1.159 2007/02/02 16:06:13 pavalos Exp $ +# $DragonFly: src/etc/Makefile,v 1.160 2007/02/10 20:46:36 swildner Exp $ .if !defined(NO_SENDMAIL) SUBDIR= sendmail @@ -496,6 +496,7 @@ upgrade_etc: preupgrade install-info --delete ${DESTDIR}/usr/share/info/tar.info ${DESTDIR}/usr/share/info/dir rm -f ${DESTDIR}/usr/share/info/tar.info .endif + csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}9/{f,s}uswintr.9.gz" ldconfig -R .if !defined(BINARY_UPGRADE) # binary upgrade just copies these nodes .if !defined(NOMAN) diff --git a/share/man/man9/Makefile b/share/man/man9/Makefile index 0032b489a9..e0533e8f5d 100644 --- a/share/man/man9/Makefile +++ b/share/man/man9/Makefile @@ -1,5 +1,5 @@ # $FreeBSD: src/share/man/man9/Makefile,v 1.60.2.26 2003/06/13 01:04:17 hmp Exp $ -# $DragonFly: src/share/man/man9/Makefile,v 1.40 2007/01/15 22:08:03 tgen Exp $ +# $DragonFly: src/share/man/man9/Makefile,v 1.41 2007/02/10 20:46:36 swildner Exp $ MAN= DECLARE_MODULE.9 DELAY.9 DEV_MODULE.9 KASSERT.9 MD5.9 \ MODULE_DEPEND.9 MODULE_VERSION.9 SYSCALL_MODULE.9 \ @@ -109,7 +109,7 @@ MLINKS+=devstat.9 devicestat.9 devstat.9 devstat_add_entry.9 MLINKS+=devstat.9 devstat_remove_entry.9 devstat.9 devstat_start_transaction.9 MLINKS+=devstat.9 devstat_end_transaction.9 MLINKS+=devstat.9 devstat_end_transaction_buf.9 -MLINKS+=fetch.9 fubyte.9 fetch.9 fuswintr.9 fetch.9 fusword.9 fetch.9 fuword.9 +MLINKS+=fetch.9 fubyte.9 fetch.9 fusword.9 fetch.9 fuword.9 MLINKS+=hash.9 hashinit.9 hash.9 phashinit.9 MLINKS+=ieee80211.9 ieee80211_chan2ieee.9 \ ieee80211.9 ieee80211_chan2mode.9 \ @@ -227,7 +227,7 @@ MLINKS+=spinlock.9 spin_unlock_rd.9 MLINKS+=spinlock.9 spin_unlock_rd_quick.9 MLINKS+=spinlock.9 spin_unlock_wr.9 MLINKS+=spinlock.9 spin_unlock_wr_quick.9 -MLINKS+=store.9 subyte.9 store.9 suswintr.9 store.9 susword.9 store.9 suword.9 +MLINKS+=store.9 subyte.9 store.9 susword.9 store.9 suword.9 MLINKS+=suser.9 suser_cred.9 MLINKS+=time.9 boottime.9 time.9 mono_time.9 time.9 runtime.9 MLINKS+=timeout.9 untimeout.9 diff --git a/share/man/man9/fetch.9 b/share/man/man9/fetch.9 index 701fc34653..c21ada7018 100644 --- a/share/man/man9/fetch.9 +++ b/share/man/man9/fetch.9 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" $FreeBSD: src/share/man/man9/fetch.9,v 1.6.2.4 2001/12/17 11:30:18 ru Exp $ -.\" $DragonFly: src/share/man/man9/fetch.9,v 1.2 2003/06/17 04:37:01 dillon Exp $ +.\" $DragonFly: src/share/man/man9/fetch.9,v 1.3 2007/02/10 20:46:36 swildner Exp $ .\" .Dd January 7, 1996 .Dt FETCH 9 @@ -42,7 +42,6 @@ .Nm fetch , .Nm fubyte , .Nm fusword , -.Nm fuswintr , .Nm fuword .Nd fetch data from user-space .Sh SYNOPSIS @@ -54,8 +53,6 @@ .Fn fubyte "const void *base" .Ft int .Fn fusword "void *base" -.Ft int -.Fn fuswintr "void *base" .Ft long .Fn fuword "const void *base" .Sh DESCRIPTION @@ -66,17 +63,13 @@ functions are designed to copy small amounts of data from user-space. The .Nm routines provide the following functionality: -.Bl -tag -width "fuswintr()" +.Bl -tag -width ".Fn fusword" .It Fn fubyte Fetches a byte of data from the user-space address .Pa base . .It Fn fusword Fetches a short word of data from the user-space address .Pa base . -.It Fn fuswintr -Fetches a short word of data from the user-space address -.Pa base . -This function is safe to call during an interrupt context. .It Fn fuword Fetches a word of data from the user-space address .Pa base . diff --git a/share/man/man9/store.9 b/share/man/man9/store.9 index 8f30c19732..2563d01eb1 100644 --- a/share/man/man9/store.9 +++ b/share/man/man9/store.9 @@ -33,7 +33,7 @@ .\" 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.2 2003/06/17 04:37:01 dillon Exp $ +.\" $DragonFly: src/share/man/man9/store.9,v 1.3 2007/02/10 20:46:36 swildner Exp $ .\" .Dd January 7, 1996 .Dt STORE 9 @@ -42,7 +42,6 @@ .Nm store , .Nm subyte , .Nm susword , -.Nm suswintr , .Nm suword .Nd store data to user-space .Sh SYNOPSIS @@ -55,8 +54,6 @@ .Ft int .Fn susword "void *base" "int word" .Ft int -.Fn suswintr "void *base" "int word" -.Ft int .Fn suword "void *base" "long word" .Sh DESCRIPTION The @@ -66,17 +63,13 @@ functions are designed to copy small amounts of data to user-space. The .Nm routines provide the following functionality: -.Bl -tag -width "suswintr()" +.Bl -tag -width ".Fn susword" .It Fn subyte Stores a byte of data to the user-space address .Pa base . .It Fn susword Stores a short word of data to the user-space address .Pa base . -.It Fn suswintr -Stores a short word of data to the user-space address -.Pa base . -This function is safe to call during an interrupt context. .It Fn suword Stores a word of data to the user-space address .Pa base .