diff options
author | Jerry Jelinek <jerry.jelinek@joyent.com> | 2017-09-22 11:56:42 +0000 |
---|---|---|
committer | Jerry Jelinek <jerry.jelinek@joyent.com> | 2017-09-22 11:56:42 +0000 |
commit | 81eea0cac9755cf17a2531be72cfafd68358db1a (patch) | |
tree | deb91172e129b9cb470c40d1c0150ba723e5ea5f | |
parent | d2d3b610ea15cd3b70a31f0289619a1dff7e2b50 (diff) | |
parent | 42b14111721da2ebd5159e7b45012a3eb0e3384c (diff) | |
download | illumos-joyent-81eea0cac9755cf17a2531be72cfafd68358db1a.tar.gz |
[illumos-gate merge]
commit 42b14111721da2ebd5159e7b45012a3eb0e3384c
8648 Fix range locking in ZIL commit codepath
commit bd9d3f904625846bdc61af8897a1072029c7aeb7
8661 remove "zil-cw2" dtrace probe
commit 2840dce1a029098fb784afd951d5f98089f850d8
8600 ZFS channel programs - snapshot
commit 000cce6b6fad4a8b0eecef6e1251f6aca1719c55
8592 ZFS channel programs - rollback
commit 1c18e8fbd8db41a9fb39bd3ef7a18ee71ece20da
8502 illumos#7955 broke delegated datasets when libshare is not present
commit 5f82aa32fbc5dc2c59bca6ff315f44a4c4c9ea86
8595 sys/ccompile.h: add __aligned and __packed
8596 iwn: remove local __packed
8597 grub: use __aligned from ccompile.h
commit d042c5a26452797afc4fe8c2ceddebff94d88745
8591 Man pages contain various errors
321 files changed, 2411 insertions, 1757 deletions
diff --git a/usr/src/grub/grub-0.97/netboot/nic.c b/usr/src/grub/grub-0.97/netboot/nic.c index 23b8d59fc8..c2b025b51a 100644 --- a/usr/src/grub/grub-0.97/netboot/nic.c +++ b/usr/src/grub/grub-0.97/netboot/nic.c @@ -117,7 +117,7 @@ static int dummy(void *unused __unused) * leaving the ethernet data 16 byte aligned. Beyond this * we use memmove but this makes the common cast simple and fast. */ -static char packet[ETH_FRAME_LEN + ETH_DATA_ALIGN] __aligned; +static char packet[ETH_FRAME_LEN + ETH_DATA_ALIGN] __aligned(16); struct nic nic = { diff --git a/usr/src/grub/grub-0.97/netboot/osdep.h b/usr/src/grub/grub-0.97/netboot/osdep.h index 03b8981d82..58925fedc7 100644 --- a/usr/src/grub/grub-0.97/netboot/osdep.h +++ b/usr/src/grub/grub-0.97/netboot/osdep.h @@ -2,7 +2,6 @@ #define _OSDEP_H #define __unused __attribute__((unused)) -#define __aligned __attribute__((aligned(16))) #include "io.h" #include "byteswap.h" diff --git a/usr/src/lib/libzfs_core/common/libzfs_core.c b/usr/src/lib/libzfs_core/common/libzfs_core.c index c17ebcc58d..d3e92151f7 100644 --- a/usr/src/lib/libzfs_core/common/libzfs_core.c +++ b/usr/src/lib/libzfs_core/common/libzfs_core.c @@ -20,7 +20,7 @@ */ /* - * Copyright (c) 2012, 2016 by Delphix. All rights reserved. + * Copyright (c) 2012, 2017 by Delphix. All rights reserved. * Copyright (c) 2013 Steven Hartland. All rights reserved. * Copyright (c) 2014 Integros [integros.com] * Copyright 2017 RackTop Systems. @@ -142,7 +142,12 @@ lzc_ioctl(zfs_ioc_t ioc, const char *name, if (resultp != NULL) { *resultp = NULL; - zc.zc_nvlist_dst_size = MAX(size * 2, 128 * 1024); + if (ioc == ZFS_IOC_CHANNEL_PROGRAM) { + zc.zc_nvlist_dst_size = fnvlist_lookup_uint64(source, + ZCP_ARG_MEMLIMIT); + } else { + zc.zc_nvlist_dst_size = MAX(size * 2, 128 * 1024); + } zc.zc_nvlist_dst = (uint64_t)(uintptr_t) malloc(zc.zc_nvlist_dst_size); if (zc.zc_nvlist_dst == NULL) { @@ -156,7 +161,7 @@ lzc_ioctl(zfs_ioc_t ioc, const char *name, * If ioctl exited with ENOMEM, we retry the ioctl after * increasing the size of the destination nvlist. * - * Channel programs that exit with ENOMEM probably ran over the + * Channel programs that exit with ENOMEM ran over the * lua memory sandbox; they should not be retried. */ if (errno == ENOMEM && resultp != NULL && diff --git a/usr/src/man/man1/at.1 b/usr/src/man/man1/at.1 index 7ca300a266..1936d144ef 100644 --- a/usr/src/man/man1/at.1 +++ b/usr/src/man/man1/at.1 @@ -27,12 +27,12 @@ at, batch \- execute commands at a later time .LP .nf -\fB/usr/bin/at\fR \fB-l\fR [\fB-p\fR \fIproject\fR] [\fB-q\fR \fIqueuename\fR] [\fIat_job_id.\fR \fI\&..\fR] +\fB/usr/bin/at\fR \fB-l\fR [\fB-p\fR \fIproject\fR] [\fB-q\fR \fIqueuename\fR] [\fIat_job_id\fR \fI...\fR] .fi .LP .nf -\fB/usr/bin/at\fR \fB-r\fR \fIat_job_id.\fR \fI\&..\fR +\fB/usr/bin/at\fR \fB-r\fR \fIat_job_id\fR \fI...\fR .fi .LP @@ -55,12 +55,12 @@ at, batch \- execute commands at a later time .LP .nf \fB/usr/xpg4/bin/at\fR \fB-l\fR [\fB-p\fR \fIproject\fR] [\fB-q\fR \fIqueuename\fR] - [\fIat_job_id.\fR \fI\&..\fR] + [\fIat_job_id\fR \fI...\fR] .fi .LP .nf -\fB/usr/xpg4/bin/at\fR \fB-r\fR \fIat_job_id.\fR \fI\&..\fR +\fB/usr/xpg4/bin/at\fR \fB-r\fR \fIat_job_id\fR \fI...\fR .fi .LP diff --git a/usr/src/man/man1/audioctl.1 b/usr/src/man/man1/audioctl.1 index 6c65764e86..78f706954d 100644 --- a/usr/src/man/man1/audioctl.1 +++ b/usr/src/man/man1/audioctl.1 @@ -53,7 +53,7 @@ record gain. .LP .SH SUBCOMMANDS -The \fRaudioctl\fB command supports the following subcommands. +The \fBaudioctl\fR command supports the following subcommands. .sp .ne 2 .na diff --git a/usr/src/man/man1/cat.1 b/usr/src/man/man1/cat.1 index 9e5e87b715..74625cbee9 100644 --- a/usr/src/man/man1/cat.1 +++ b/usr/src/man/man1/cat.1 @@ -117,7 +117,7 @@ Buffered output is the default. Non-printing characters, with the exception of tabs, NEWLINEs and form feeds, are printed visibly. ASCII control characters (octal \fB000\fR \(mi \fB037\fR) are printed as \fB^\fR\fIn,\fR where \fIn\fR is the corresponding ASCII -character in the range octal 100 \(mi 137 (@, A, B, C, . . ., X, Y, Z, [, \e, +character in the range octal 100 \(mi 137 (@, A, B, C, ..., X, Y, Z, [, \e, ], ^, and _); the \fBDEL\fR character (octal \fB0177\fR) is printed \fB^?\fR. Other non-printable characters are printed as \fBM-\fR\fIx,\fR where \fIx\fR is the ASCII character specified by the low-order seven bits. diff --git a/usr/src/man/man1/chmod.1 b/usr/src/man/man1/chmod.1 index 4c04e2ce32..7aaa33d012 100644 --- a/usr/src/man/man1/chmod.1 +++ b/usr/src/man/man1/chmod.1 @@ -17,22 +17,22 @@ chmod \- change the permissions mode of a file .SH SYNOPSIS .LP .nf -\fBchmod\fR [\fB-fR\fR] \fIabsolute-mode\fR \fIfile\fR... +\fBchmod\fR [\fB-fR\fR] \fIabsolute-mode\fR \fIfile\fR ... .fi .LP .nf -\fBchmod\fR [\fB-fR\fR] \fIsymbolic-mode-list\fR \fIfile\fR... +\fBchmod\fR [\fB-fR\fR] \fIsymbolic-mode-list\fR \fIfile\fR ... .fi .LP .nf -\fBchmod\fR [\fB-fR\fR] \fIacl_operation\fR \fIfile\fR... +\fBchmod\fR [\fB-fR\fR] \fIacl_operation\fR \fIfile\fR ... .fi .LP .nf -\fBchmod\fR [\fB-fR\fR] [\fB-@\fR \fInamed_attribute\fR]...\fIattribute_specification_list\fR \fIfile\fR... +\fBchmod\fR [\fB-fR\fR] [\fB-@\fR \fInamed_attribute\fR]...\fIattribute_specification_list\fR \fIfile\fR ... .fi .SH DESCRIPTION @@ -48,7 +48,7 @@ files, directories, and opaque extended attribute files. An absolute mode command line has the following format: .sp .LP -\fBchmod\fR [\fIoptions\fR] \fIabsolute-mode\fR \fIfile\fR . . . +\fBchmod\fR [\fIoptions\fR] \fIabsolute-mode\fR \fIfile\fR ... .sp .LP where \fIabsolute-mode\fR is specified using octal numbers \fInnnn\fR defined @@ -216,7 +216,7 @@ mode; it must be set (or cleared) in symbolic mode using \fBg+s\fR (or A symbolic mode command line has the following format: .sp .LP -\fBchmod\fR [\fIoptions\fR] \fIsymbolic-mode-list\fR \fIfile\fR . . . +\fBchmod\fR [\fIoptions\fR] \fIsymbolic-mode-list\fR \fIfile\fR ... .sp .LP where \fIsymbolic-mode-list\fR is a comma-separated list (with no intervening diff --git a/usr/src/man/man1/cputrack.1 b/usr/src/man/man1/cputrack.1 index ab1dd45d49..2ed9e5ce42 100644 --- a/usr/src/man/man1/cputrack.1 +++ b/usr/src/man/man1/cputrack.1 @@ -304,13 +304,13 @@ time pid lwp event pic0 pic1 0.029 101143 1 fini_lwp 1025546 25074 0.029 101143 1 exec 1025546 25074 0.000 101143 1 exec \e - # '/usr/bin/sh /usr/bin/basename\e + # '/usr/bin/sh /usr/bin/basename \e /bin/ulimit' 0.039 101143 1 init_lwp 1025546 25074 0.050 101143 1 fini_lwp 1140482 27806 0.050 101143 1 exec 1140482 27806 0.000 101143 1 exec # '/usr/bin/expr \e - //bin/ulimit : \(.*[^/]\)/*$ : .*/\(..*\) : \(.*\)$ | //bin/ulimi' + //bin/ulimit : \e(.*[^/]\e)/*$ : .*/ \e(..*\e) : \e(.*\e)$ | //bin/ulimi' 0.059 101143 1 init_lwp 1140482 27806 0.075 101143 1 fini_lwp 1237647 30207 0.075 101143 1 exit 1237647 30207 diff --git a/usr/src/man/man1/ctags.1 b/usr/src/man/man1/ctags.1 index cbcd35fe5b..6fa1d33b51 100644 --- a/usr/src/man/man1/ctags.1 +++ b/usr/src/man/man1/ctags.1 @@ -39,9 +39,9 @@ Normally, \fBctags\fR places the tag descriptions in a file called \fBtags\fR; this may be overridden with the \fB-f\fR option. .sp .LP -Files with names ending in \fB\&.c\fR or \fB\&.h\fR are assumed to be either C +Files with names ending in \fB\&.c\fR or \fB\&.h\fR are assumed to be either C or C++ source files and are searched for C/C++ routine and macro definitions. -Files with names ending in \fB\&.cc\fR, \fB\&.C\fR, or \fB\&.cxx\fR, are +Files with names ending in \fB\&.cc\fR, \fB\&.C\fR, or \fB\&.cxx\fR are assumed to be C++ source files. Files with names ending in \fB\&.y\fR are assumed to be \fByacc\fR source files. Files with names ending in \fB\&.l\fR are assumed to be \fBlex\fR files. Others are first examined to see if they @@ -50,9 +50,9 @@ processed again looking for C definitions. .sp .LP The tag \fBmain\fR is treated specially in C or C++ programs. The tag formed -is created by prepending \fBM\fR to \fIfile\fR, with a trailing \fB\&.c \fR, -\fB\&.cc\fR \fB\&.C\fR, or \fB\&.cxx\fR removed, if any, and leading path name -components also removed. This makes use of \fBctags\fR practical in +is created by prepending \fBM\fR to \fIfile\fR, with a trailing \fB\&.c\fR, +\fB\&.cc\fR, \fB\&.C\fR, or \fB\&.cxx\fR removed, if any, and leading path +name components also removed. This makes use of \fBctags\fR practical in directories with more than one program. .SH OPTIONS .sp diff --git a/usr/src/man/man1/elfedit.1 b/usr/src/man/man1/elfedit.1 index a8e9712218..7230d8ab13 100644 --- a/usr/src/man/man1/elfedit.1 +++ b/usr/src/man/man1/elfedit.1 @@ -107,7 +107,7 @@ used in the C programming language within a string literal: .sp .ne 2 .na -\fB\a\fR +\fB\ea\fR .ad .RS 8n alert (bell) @@ -125,7 +125,7 @@ backspace .sp .ne 2 .na -\fB\f\fR +\fB\ef\fR .ad .RS 8n form feed @@ -134,7 +134,7 @@ form feed .sp .ne 2 .na -\fB\n\fR +\fB\en\fR .ad .RS 8n newline @@ -143,7 +143,7 @@ newline .sp .ne 2 .na -\fB\r\fR +\fB\er\fR .ad .RS 8n return @@ -152,7 +152,7 @@ return .sp .ne 2 .na -\fB\t\fR +\fB\et\fR .ad .RS 8n horizontal tab @@ -188,7 +188,7 @@ single quote .sp .ne 2 .na -\fB\"\fR +\fB\e"\fR .ad .RS 8n double quote diff --git a/usr/src/man/man1/head.1 b/usr/src/man/man1/head.1 index bf423612c3..21df616ccc 100644 --- a/usr/src/man/man1/head.1 +++ b/usr/src/man/man1/head.1 @@ -148,7 +148,7 @@ the \fB-n\fR \fInumber\fR option. .sp .ne 2 .na -\fB\FB-q\fR\fR +\fB-q\fR .ad .RS 13n \fBhead\fR will not print a header in between each specified file. @@ -157,7 +157,7 @@ the \fB-n\fR \fInumber\fR option. .sp .ne 2 .na -\fB\FB-v\fR\fR +\fB-v\fR .ad .RS 13n \fBhead\fR will always print a header in between each specified file. diff --git a/usr/src/man/man1/ksh93.1 b/usr/src/man/man1/ksh93.1 index 880586cf07..b0b8f3c14a 100644 --- a/usr/src/man/man1/ksh93.1 +++ b/usr/src/man/man1/ksh93.1 @@ -1697,8 +1697,8 @@ zero, minutes, and seconds of the form \fIHHhMMmSS.FFs\fR. The value of \fIp\fR determines whether or not the fraction is included. .sp All other characters are output without change and a trailing NEWLINE is added. -If unset, the default value, \fB$'\enreal\t%2lR\nuser\t%2lU\nsys%2lS'\fR, is -used. If the value is null, no timing information is displayed. +If unset, the default value, \fB$'\enreal\et%2lR\enuser\et%2lU\ensys%2lS'\fR, +is used. If the value is null, no timing information is displayed. .RE .sp @@ -6941,7 +6941,7 @@ The scripting interface is Uncommitted. The environment variables, \fBprintf\fR(1), \fBstty\fR(1), \fBtest\fR(1), \fBumask\fR(1), \fBvi\fR(1), \fBdup\fR(2), \fBexec\fR(2), \fBfork\fR(2), \fBioctl\fR(2), \fBlseek\fR(2), \fBpathconf\fR(2), \fBpipe\fR(2), \fBsysconf\fR(3C), \fBulimit\fR(2), -\fBumask\fR(2), \fBrand\fR(3C)\fBtcgetattr\fR(3C), \fBwait\fR(3C), +\fBumask\fR(2), \fBrand\fR(3C), \fBtcgetattr\fR(3C), \fBwait\fR(3C), \fBa.out\fR(4), \fBprofile\fR(4), \fBattributes\fR(5), \fBenviron\fR(5), \fBlargefile\fR(5), \fBstandards\fR(5) .sp diff --git a/usr/src/man/man1/ldap.1 b/usr/src/man/man1/ldap.1 index 334bf22236..fae7a45eda 100644 --- a/usr/src/man/man1/ldap.1 +++ b/usr/src/man/man1/ldap.1 @@ -82,7 +82,7 @@ l | l | l . Database Object Class Container _ passwd posixAccount ou=people,dc=... - shadowAccount + shadowAccount _ group posixGroup ou=Group,dc=... _ @@ -106,7 +106,7 @@ netgroup nisNetgroup ou=Netgroup,dc=... _ aliases mailGroup ou=Aliases,dc=... _ -publickey nisKeyObject +publickey nisKeyObject _ generic nisObject nisMapName=...,dc=... _ @@ -300,7 +300,7 @@ PAM framework configuration file. .LP \fBldaplist\fR(1), \fBidsconfig\fR(1M), \fBldap_cachemgr\fR(1M), \fBldapaddent\fR(1M), \fBldapclient\fR(1M), \fBnsswitch.conf\fR(4), -\fBpam.conf\fR(4), \fBkerberos\fR(5)\fBpam_authtok_check\fR(5), +\fBpam.conf\fR(4), \fBkerberos\fR(5), \fBpam_authtok_check\fR(5), \fBpam_authtok_get\fR(5), \fBpam_authtok_store\fR(5), \fBpam_dhkeys\fR(5), \fBpam_ldap\fR(5), \fBpam_passwd_auth\fR(5), \fBpam_unix_account\fR(5), \fBpam_unix_auth\fR(5), \fBpam_unix_session\fR(5) diff --git a/usr/src/man/man1/ldapdelete.1 b/usr/src/man/man1/ldapdelete.1 index 67ee1def35..58e899aa9a 100644 --- a/usr/src/man/man1/ldapdelete.1 +++ b/usr/src/man/man1/ldapdelete.1 @@ -211,8 +211,7 @@ alternative between \fB-j\fR and \fB-w\fR/\fB-W\fR. .sp .ne 2 .na -\fB\fB-J\fR [:\fIcriticality\fR[:\fIvalue\fR|::\fIb64value\fR|\fIb64value\fR|:\ -fIfileurl\fR]]\fR +\fB\fB-J\fR [:\fIcriticality\fR[:\fIvalue\fR|::\fIb64value\fR|\fIb64value\fR|:\fIfileurl\fR]]\fR .ad .sp .6 .RS 4n diff --git a/usr/src/man/man1/ldapmodify.1 b/usr/src/man/man1/ldapmodify.1 index 15e38d9d1f..6110e933fe 100644 --- a/usr/src/man/man1/ldapmodify.1 +++ b/usr/src/man/man1/ldapmodify.1 @@ -285,8 +285,7 @@ the \fB-w\fR and \fB-W\fR options. .sp .ne 2 .na -\fB\fB-J\fR [:\fIcriticality\fR[:\fIvalue\fR|::\fIb64value\fR|\fIb64value\fR|:\ -fIfileurl\fR]]\fR +\fB\fB-J\fR [:\fIcriticality\fR[:\fIvalue\fR|::\fIb64value\fR|\fIb64value\fR|:\fIfileurl\fR]]\fR .ad .sp .6 .RS 4n diff --git a/usr/src/man/man1/ldapmodrdn.1 b/usr/src/man/man1/ldapmodrdn.1 index f813635225..5feb1bbc51 100644 --- a/usr/src/man/man1/ldapmodrdn.1 +++ b/usr/src/man/man1/ldapmodrdn.1 @@ -174,8 +174,7 @@ the specified character set to UTF8, thus overriding the \fBLANG\fR setting. .sp .ne 2 .na -\fB\fB-J\fR [:\fIcriticality\fR[:\fIvalue\fR|::\fIb64value\fR|\fIb64value\fR|:\ -fIfileurl\fR]]\fR +\fB\fB-J\fR [:\fIcriticality\fR[:\fIvalue\fR|::\fIb64value\fR|\fIb64value\fR|:\fIfileurl\fR]]\fR .ad .sp .6 .RS 4n diff --git a/usr/src/man/man1/ldapsearch.1 b/usr/src/man/man1/ldapsearch.1 index b7856ceb3b..91571c81bd 100644 --- a/usr/src/man/man1/ldapsearch.1 +++ b/usr/src/man/man1/ldapsearch.1 @@ -340,8 +340,7 @@ the \fB-w\fR and \fB-W\fR options. .sp .ne 2 .na -\fB\fB-J\fR [:\fIcriticality\fR[:\fIvalue\fR|::\fIb64value\fR|\fIb64value\fR|:\ -fIfileurl\fR]]\fR +\fB\fB-J\fR [:\fIcriticality\fR[:\fIvalue\fR|::\fIb64value\fR|\fIb64value\fR|:\fIfileurl\fR]]\fR .ad .sp .6 .RS 4n diff --git a/usr/src/man/man1/localedef.1 b/usr/src/man/man1/localedef.1 index e19cd325d6..3c32f9f3cb 100644 --- a/usr/src/man/man1/localedef.1 +++ b/usr/src/man/man1/localedef.1 @@ -37,8 +37,8 @@ localedef \- define locale environment .SH SYNOPSIS .LP .nf -\fBlocaledef\fR [\fB-c\fR] [\fB-v\fR] [\fB-U\fR\] [\fB-f\fR \fIcharmap\fR] - [\fB-w\fR \fIwidthfile\fR] [\fB-i\fR \fIsourcefile\fR] +\fBlocaledef\fR [\fB-c\fR] [\fB-v\fR] [\fB-U\fR\] [\fB-f\fR \fIcharmap\fR] + [\fB-w\fR \fIwidthfile\fR] [\fB-i\fR \fIsourcefile\fR] [\fB-u\fR \fIcode_set_name\fR] \fIlocalename\fR .fi @@ -273,7 +273,7 @@ If an error is detected, no permanent output will be created. .SH FILES .ne 2 .na -\fB\fB/usr/lib/locale/\fIlocalename\fR/ +\fB/usr/lib/locale/\fR\fIlocalename\fR\fB/\fR .ad .sp .6 .RS 4n diff --git a/usr/src/man/man1/make.1 b/usr/src/man/man1/make.1 index d0cbd29072..8aa5607068 100644 --- a/usr/src/man/man1/make.1 +++ b/usr/src/man/man1/make.1 @@ -1,8 +1,8 @@ '\" te -.\" Copyright 1989 AT&T +.\" Copyright 1989 AT&T .\" Portions Copyright (c) 1992, X/Open Company Limited All Rights Reserved -.\" Copyright (c) 2008, Sun Microsystems, Inc. All Rights Reserved -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Copyright (c) 2008, Sun Microsystems, Inc. All Rights Reserved +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. @@ -16,25 +16,25 @@ make \- maintain, update, and regenerate related programs and files .LP .nf \fB/usr/bin/make\fR [\fB-d\fR] [\fB-dd\fR] [\fB-D\fR] [\fB-DD\fR] [\fB-e\fR] - [\fB-i\fR] [\fB-j\fR \FImaxjobs\fR] [\fB-k\fR] [\fB-m\fR \fI{serial | parallel}\fR] - [\fB-n\fR] [\fB-p\fR] [\fB-P\fR] [\fB-q\fR] [\fB-r\fR] [\fB-s\fR] [\fB-S\fR] [\fB-t\fR] [\fB-V\fR] - [\fB-f\fR \fImakefile\fR]... [\fB-K\fR \fIstatefile\fR]... [\fItarget\fR]... + [\fB-i\fR] [\fB-j\fR \fImaxjobs\fR] [\fB-k\fR] [\fB-m\fR \fI{serial | parallel}\fR] + [\fB-n\fR] [\fB-p\fR] [\fB-P\fR] [\fB-q\fR] [\fB-r\fR] [\fB-s\fR] [\fB-S\fR] [\fB-t\fR] [\fB-V\fR] + [\fB-f\fR \fImakefile\fR]... [\fB-K\fR \fIstatefile\fR]... [\fItarget\fR]... [\fImacro\fR = \fIvalue\fR...] .fi .nf \fB/usr/bin/dmake\fR [\fB-d\fR] [\fB-dd\fR] [\fB-D\fR] [\fB-DD\fR] [\fB-e\fR] - [\fB-i\fR] [\fB-j\fR \FImaxjobs\fR] [\fB-k\fR] [\fB-m\fR \fI{serial | parallel}\fR] - [\fB-n\fR] [\fB-p\fR] [\fB-P\fR] [\fB-q\fR] [\fB-r\fR] [\fB-s\fR] [\fB-S\fR] [\fB-t\fR] [\fB-V\fR] - [\fB-f\fR \fImakefile\fR]... [\fB-K\fR \fIstatefile\fR]... [\fItarget\fR]... + [\fB-i\fR] [\fB-j\fR \fImaxjobs\fR] [\fB-k\fR] [\fB-m\fR \fI{serial | parallel}\fR] + [\fB-n\fR] [\fB-p\fR] [\fB-P\fR] [\fB-q\fR] [\fB-r\fR] [\fB-s\fR] [\fB-S\fR] [\fB-t\fR] [\fB-V\fR] + [\fB-f\fR \fImakefile\fR]... [\fB-K\fR \fIstatefile\fR]... [\fItarget\fR]... [\fImacro\fR = \fIvalue\fR...] .fi .LP .nf \fB/usr/xpg4/bin/make\fR [\fB-d\fR] [\fB-dd\fR] [\fB-D\fR] [\fB-DD\fR] - [\fB-e\fR] [\fB-i\fR] [\fB-j\fR \FImaxjobs\fR] [\fB-k\fR] [\fB-m\fR \fI{serial | parallel}\fR] - [\fB-n\fR] [\fB-p\fR] [\fB-P\fR] [\fB-q\fR] [\fB-r\fR] [\fB-s\fR] [\fB-S\fR] [\fB-t\fR] [\fB-V\fR] + [\fB-e\fR] [\fB-i\fR] [\fB-j\fR \fImaxjobs\fR] [\fB-k\fR] [\fB-m\fR \fI{serial | parallel}\fR] + [\fB-n\fR] [\fB-p\fR] [\fB-P\fR] [\fB-q\fR] [\fB-r\fR] [\fB-s\fR] [\fB-S\fR] [\fB-t\fR] [\fB-V\fR] [\fB-f\fR \fImakefile\fR]... [\fItarget\fR]... [\fImacro\fR = \fIvalue\fR...] .fi @@ -465,8 +465,8 @@ A target entry has the following format: .sp .in +2 .nf - \fItarget\fR [\fB:\fR|\fB::\fR] [\fIdependency\fR] ... [\fB;\fR \fBcommand\fR] ... - [\fBcommand\fR] + \fItarget\fR [\fB:\fR|\fB::\fR] [\fIdependency\fR] ... [\fB;\fR \fBcommand\fR] ... + [\fBcommand\fR] ... .fi .in -2 @@ -519,7 +519,7 @@ follows the \fBTAB\fR in a command line, that line is passed to the shell If the word \fBinclude\fR appears as the first seven letters of a line and is followed by a \fBSPACE\fR or \fBTAB\fR, the string that follows is taken as a filename to interpolate at that line. \fBinclude\fR files can be nested to a -depth of no more than 38 nested makefiles . If \fIfilename\fR is a macro +depth of no more than 38 nested makefiles. If \fIfilename\fR is a macro reference, it is expanded. .RE @@ -1045,7 +1045,7 @@ carried forward from the value being replaced. For example: .sp .in +2 .nf -\fBPROGRAM=fabricate +\fBPROGRAM=fabricate DEBUG= $(PROGRAM:%=tmp/%\(mig)\fR .fi .in -2 @@ -1088,7 +1088,7 @@ is referred to. This allows nested invocations of \fBmake\fR written as: .sp .in +2 .nf - \fB$(MAKE)\fR .\|.\|. + \fB$(MAKE)\fR .\|.\|. .fi .in -2 @@ -1341,39 +1341,39 @@ _ Library \fBAR\fR \fBar\fR Archives \fBARFLAGS\fR \fBrv\fR _ - + Assembler \fBAS\fR \fBas\fR -Commands \fBASFLAGS\fR +Commands \fBASFLAGS\fR \fBCOMPILE.s\fR \fB$(AS) $(ASFLAGS)\fR \fBCOMPILE.S\fR \fB$(CC) $(ASFLAGS) $(CPPFLAGS)\fR \fB-c\fR _ - + C \fBCC\fR \fBcc\fR -Compiler \fBCFLAGS\fR -Commands \fBCPPFLAGS\fR +Compiler \fBCFLAGS\fR +Commands \fBCPPFLAGS\fR \fBCOMPILE.c\fR \fB$(CC) $(CFLAGS) $(CPPFLAGS)\fR \fB-c\fR \fBLINK.c\fR \fB$(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS)\fR _ - + C++ \fBCCC\fR \fBCC\fR Compiler \fBCCFLAGS\fR \fBCFLAGS\fR -Commands \fBCPPFLAGS\fR +Commands \fBCPPFLAGS\fR \fBCOMPILE.cc\fR \fB$(CCC) $(CCFLAGS) $(CPPFLAGS)\fR \fB-c\fR \fBLINK.cc\fR \fB$(CCC) $(CCFLAGS) $(CPPFLAGS) $(LDFLAGS)\fR \fBCOMPILE.C\fR \fB$(CCC) $(CCFLAGS) $(CPPFLAGS)\fR \fB-c\fR \fBLINK.C\fR \fB$(CCC) $(CCFLAGS) $(CPPFLAGS) $(LDFLAGS)\fR _ - + FORTRAN 77 \fBFC\fR \fBf77\fR -Compiler \fBFFLAGS\fR +Compiler \fBFFLAGS\fR Commands \fBCOMPILE.f\fR \fB$(FC) $(FFLAGS)\fR \fB-c\fR \fBLINK.f\fR \fB$(FC) $(FFLAGS) $(LDFLAGS)\fR \fBCOMPILE.F\fR \fB$(FC) $(FFLAGS) $(CPPFLAGS)\fR \fB-c\fR \fBLINK.F\fR \fB$(FC) $(FFLAGS) $(CPPFLAGS) $(LDFLAGS)\fR _ - + FORTRAN 90 \fBFC\fR \fBf90\fR -Compiler \fBF90FLAGS\fR +Compiler \fBF90FLAGS\fR Commands \fBCOMPILE.f90\fR \fB$(F90C) $(F90FLAGS)\fR \fB-c\fR \fBLINK.f90\fR \fB$(F90C) $(F90FLAGS) $(LDFLAGS)\fR \fBCOMPILE.ftn\fR \fB$(F90C) $(F90FLAGS) $(CPPFLAGS)\fR \fB-c\fR @@ -1381,52 +1381,52 @@ Commands \fBCOMPILE.f90\fR \fB$(F90C) $(F90FLAGS)\fR \fB-c\fR \fB$(F90C) $(F90FLAGS) $(CPPFLAGS) $(LDFLAGS)\fR T} _ - + Link Editor \fBLD\fR \fBld\fR -Command \fBLDFLAGS\fR +Command \fBLDFLAGS\fR _ - + lex \fBLEX\fR \fBlex\fR -Command \fBLFLAGS\fR +Command \fBLFLAGS\fR \fBLEX.l\fR \fB$(LEX) $(LFLAGS)\fR \fB-t\fR _ - + lint \fBLINT\fR \fBlint\fR -Command \fBLINTFLAGS\fR +Command \fBLINTFLAGS\fR \fBLINT.c\fR \fB$(LINT) $(LINTFLAGS) $(CPPFLAGS)\fR _ - + Modula 2 \fBM2C\fR \fBm2c\fR -Commands \fBM2FLAGS\fR - \fBMODFLAGS\fR - \fBDEFFLAGS\fR +Commands \fBM2FLAGS\fR + \fBMODFLAGS\fR + \fBDEFFLAGS\fR \fBCOMPILE.def\fR \fB$(M2C) $(M2FLAGS) $(DEFFLAGS)\fR \fBCOMPILE.mod\fR \fB$(M2C) $(M2FLAGS) $(MODFLAGS)\fR _ - + Pascal \fBPC\fR \fBpc\fR -Compiler \fBPFLAGS\fR +Compiler \fBPFLAGS\fR Commands \fBCOMPILE.p\fR \fB$(PC) $(PFLAGS) $(CPPFLAGS)\fR \fB-c\fR \fBLINK.p\fR \fB$(PC) $(PFLAGS) $(CPPFLAGS) $(LDFLAGS)\fR _ - -Ratfor \fBRFLAGS\fR + +Ratfor \fBRFLAGS\fR Compilation \fBCOMPILE.r\fR \fB$(FC) $(FFLAGS) $(RFLAGS)\fR \fB-c\fR Commands \fBLINK.r\fR \fB$(FC) $(FFLAGS) $(RFLAGS) $(LDFLAGS)\fR _ - + rm Command \fBRM\fR \fBrm\fR \fB-f\fR _ - -sccs \fBSCCSFLAGS\fR + +sccs \fBSCCSFLAGS\fR Command \fBSCCSGETFLAGS\fR \fB-s\fR _ - + yacc \fBYACC\fR \fByacc\fR -Command \fBYFLAGS\fR +Command \fBYFLAGS\fR \fBYACC.y\fR \fB$(YACC) $(YFLAGS)\fR _ - + Suffixes List \fBSUFFIXES\fR T{ \fB\&.o .c .c~ .cc .cc~ .y .y~ .l .l~ .s .s~ .sh .sh~ .S .S~ .ln .h .h~ .f .f~ .F .F~ .mod .mod~ .sym .def .def~ .p .p~ .r .r~ .cps .cps~ .C .C~ .Y .Y~ .L .L .f90 .f90~ .ftn .ftn~\fR T} @@ -1470,7 +1470,7 @@ form: .sp .in +2 .nf -\fItp\fR%\fIts\fR:\|[\fIdependency .\|.\|.\fR\|] \fIdp\fR%\fIds\fR\|[\fIdependency .\|.\|.\fR\|] +\fItp\fR%\fIts\fR:\|[\fIdependency .\|.\|.\fR\|] \fIdp\fR%\fIds\fR\|[\fIdependency .\|.\|.\fR\|] \fIrule\fR .fi .in -2 @@ -1515,7 +1515,7 @@ suffix rule. .sp .TS box; -cw(1.57i) |cw(3.93i) +cw(1.57i) |cw(3.93i) cw(1.57i) |cw(3.93i) . T{ \fITable of Standard Implicit (Suffix) Rules for Assembly Files\fR @@ -1525,28 +1525,28 @@ _ _ \fB\&.s.o\fR \fB$(COMPILE.s)\fR \fB-o\fR \fB$@ $<\fR _ - + \fB\&.s.a\fR \fB$(COMPILE.s)\fR \fB-o\fR \fB$% $<\fR \fB$(AR) $(ARFLAGS) $@ $%\fR \fB$(RM) $%\fR _ - + \fB\&.s~.o\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.s\fR \fB$(COMPILE.s)\fR \fB-o\fR \fB$@ $*.s\fR _ - + \fB\&.S.o\fR \fB$(COMPILE.S)\fR \fB-o\fR \fB$@ $<\fR _ - + \fB\&.S.a\fR \fB$(COMPILE.S)\fR \fB-o\fR \fB$% $<\fR \fB$(AR) $(ARFLAGS) $@ $%\fR \fB$(RM) $%\fR _ - + \fB\&.S~.o\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.S\fR \fB$(COMPILE.S)\fR \fB-o\fR \fB$@ $*.S\fR _ - + \fB\&.S~.a\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.S\fR \fB$(COMPILE.S)\fR \fB-o\fR \fB$% $*.S\fR \fB$(AR) $(ARFLAGS) $@ $%\fR @@ -1558,7 +1558,7 @@ _ .sp .TS box; -cw(1.57i) |cw(3.93i) +cw(1.57i) |cw(3.93i) cw(1.57i) |cw(3.93i) . T{ \fITable of Standard Implicit (Suffix) Rules for C Files\fR @@ -1568,30 +1568,30 @@ _ _ \fB\&.c\fR \fB$(LINK.c)\fR \fB-o\fR \fB$@ $< $(LDLIBS)\fR _ - + \fB\&.c.ln\fR \fB$(LINT.c) $(OUTPUT_OPTION)\fR \fB-i\fR \fB$<\fR _ - + \fB\&.c.o\fR \fB$(COMPILE.c) $(OUTPUT_OPTION) $<\fR _ - + \fB\&.c.a\fR \fB$(COMPILE.c)\fR \fB-o\fR \fB$% $<\fR \fB$(AR) $(ARFLAGS) $@ $%\fR \fB$(RM) $%\fR _ - + \fB\&.c~\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.c\fR \fB$(CC) $(CFLAGS) $(LDFLAGS)\fR \fB-o\fR \fB$@ $*.c\fR _ - + \fB\&.c~.o\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.c\fR \fB$(CC) $(CFLAGS)\fR \fB-c\fR \fB$*.c\fR _ - + \fB\&.c~.ln\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.c\fR \fB$(LINT.c) $(OUTPUT_OPTION)\fR \fB-c\fR \fB$*.c\fR _ - + \fB\&.c~.a\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.c\fR \fB$(COMPILE.c)\fR \fB-o\fR \fB$% $*.c\fR \fB$(AR) $(ARFLAGS) $@ $%\fR @@ -1603,7 +1603,7 @@ _ .sp .TS box; -cw(1.57i) |cw(3.93i) +cw(1.57i) |cw(3.93i) cw(1.57i) |cw(3.93i) . T{ \fITable of Standard Implicit (Suffix) Rules for C++ Files\fR @@ -1613,56 +1613,56 @@ _ _ \fB\&.cc\fR \fB$(LINK.cc)\fR \fB-o\fR \fB$@ $< $(LDLIBS)\fR _ - + \fB\&.cc.o\fR \fB$(COMPILE.cc) $(OUTPUT_OPTION) $<\fR _ - + \fB\&.cc.a\fR \fB$(COMPILE.cc)\fR \fB-o\fR \fB$% $<\fR \fB$(AR) $(ARFLAGS) $@ $%\fR \fB$(RM) $%\fR _ - + \fB\&.cc~\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.cc\fR \fB$(LINK.cc)\fR \fB-o\fR \fB$@ $*.cc $(LDLIBS)\fR _ - + \fB\&.cc.o\fR \fB$(COMPILE.cc) $(OUTPUT_OPTION) $<\fR _ - + \fB\&.cc~.o\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.cc\fR \fB$(COMPILE.cc) $(OUTPUT_OPTION) $*.cc\fR _ - + \fB\&.cc.a\fR \fB$(COMPILE.cc)\fR \fB-o\fR \fB$% $<\fR \fB$(AR) $(ARFLAGS) $@ $%\fR \fB$(RM) $%\fR _ - + \fB\&.cc~.a\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.cc\fR \fB$(COMPILE.cc)\fR \fB-o\fR \fB$% $*.cc\fR \fB$(AR) $(ARFLAGS) $@ $%\fR \fB$(RM) $%\fR _ - + \fB\&.C\fR \fB$(LINK.C)\fR \fB-o\fR \fB$@ $< $(LDLIBS)\fR _ - + \fB\&.C~\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.C\fR \fB$(LINK.C)\fR \fB-o\fR \fB$@ $*.C $(LDLIBS)\fR _ - + \fB\&.C.o\fR \fB$(COMPILE.C) $(OUTPUT_OPTION) $<\fR _ - + \fB\&.C~.o\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.C\fR \fB$(COMPILE.C) $(OUTPUT_OPTION) $*.C\fR _ - + \fB\&.C.a\fR \fB$(COMPILE.C)\fR \fB-o\fR \fB$% $<\fR \fB$(AR) $(ARFLAGS) $@ $%\fR \fB$(RM) $%\fR _ - + \fB\&.C~.a\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.C\fR \fB$(COMPILE.C)\fR \fB-o\fR \fB$% $*.C\fR \fB$(AR) $(ARFLAGS) $@ $%\fR @@ -1674,7 +1674,7 @@ _ .sp .TS box; -cw(1.57i) |cw(3.93i) +cw(1.57i) |cw(3.93i) cw(1.57i) |cw(3.93i) . T{ \fITable of Standard Implicit (Suffix) Rules for FORTRAN 77 Files\fR @@ -1684,51 +1684,51 @@ _ _ \fB\&.f\fR \fB$(LINK.f)\fR \fB-o\fR \fB$@ $< $(LDLIBS)\fR _ - + \fB\&.f.o\fR \fB$(COMPILE.f) $(OUTPUT_OPTION) $<\fR _ - + \fB\&.f.a\fR \fB$(COMPILE.f)\fR \fB-o\fR \fB$% $<\fR \fB$(AR) $(ARFLAGS) $@ $%\fR \fB$(RM) $%\fR _ - + \fB\&.f\fR \fB$(LINK.f)\fR \fB-o\fR \fB$@ $< $(LDLIBS)\fR _ - + \fB\&.f~\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.f\fR \fB$(FC) $(FFLAGS) $(LDFLAGS)\fR \fB-o\fR \fB$@ $*.f\fR _ - + \fB\&.f~.o\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.f\fR \fB$(FC) $(FFLAGS)\fR \fB-c\fR \fB$*.f\fR _ - + \fB\&.f~.a\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.f\fR \fB$(COMPILE.f)\fR \fB-o\fR \fB$% $*.f\fR \fB$(AR) $(ARFLAGS) $@ $%\fR \fB$(RM) $%\fR _ - + \fB\&.F\fR \fB$(LINK.F)\fR \fB-o\fR \fB$@ $< $(LDLIBS)\fR _ - + \fB\&.F.o\fR \fB$(COMPILE.F) $(OUTPUT_OPTION) $<\fR _ - + \fB\&.F.a\fR \fB$(COMPILE.F)\fR \fB-o\fR \fB$% $<\fR \fB$(AR) $(ARFLAGS) $@ $%\fR \fB$(RM) $%\fR _ - + \fB\&.F~\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.F\fR \fB$(FC) $(FFLAGS) $(LDFLAGS)\fR \fB-o\fR \fB$@ $*.F\fR _ - + \fB\&.F~.o\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.F\fR \fB$(FC) $(FFLAGS)\fR \fB-c\fR \fB$*.F\fR _ - + \fB\&.F~.a\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.F\fR \fB$(COMPILE.F)\fR \fB-o\fR \fB$% $*.F\fR \fB$(AR) $(ARFLAGS) $@ $%\fR @@ -1740,7 +1740,7 @@ _ .sp .TS box; -cw(1.57i) |cw(3.93i) +cw(1.57i) |cw(3.93i) cw(1.57i) |cw(3.93i) . T{ \fITable of Standard Implicit (Suffix) Rules for FORTRAN 90 Files\fR @@ -1750,48 +1750,48 @@ _ _ \fB\&.f90\fR \fB$(LINK.f90)\fR \fB-o\fR \fB$@ $< $(LDLIBS)\fR _ - + \fB\&.f90~\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.f90\fR \fB$(LINK.f90)\fR \fB-o\fR \fB$@ $*.f90 $(LDLIBS)\fR _ - + \fB\&.f90.o\fR \fB$(COMPILE.f90) $(OUTPUT_OPTION) $<\fR _ - + \fB\&.f90~.o\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.f90\fR \fB$(COMPILE.f90) $(OUTPUT_OPTION) $*.f90\fR _ - + \fB\&.f90.a\fR \fB$(COMPILE.f90)\fR \fB-o\fR \fB$% $<\fR \fB$(AR) $(ARFLAGS) $@ $%\fR \fB$(RM) $%\fR _ - + \fB\&.f90~.a\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.f90\fR \fB$(COMPILE.f90)\fR \fB-o\fR \fB$% $*.f90\fR \fB$(AR) $(ARFLAGS) $@ $%\fR \fB$(RM) $%\fR _ - + \fB\&.ftn\fR \fB$(LINK.ftn)\fR \fB-o\fR \fB$@ $< $(LDLIBS)\fR _ - + \fB\&.ftn~\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.ftn\fR \fB$(LINK.ftn)\fR \fB-o\fR \fB$@ $*.ftn $(LDLIBS)\fR _ - + \fB\&.ftn.o\fR \fB$(COMPILE.ftn) $(OUTPUT_OPTION) $<\fR _ - + \fB\&.ftn~.o\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.ftn\fR \fB$(COMPILE.ftn) $(OUTPUT_OPTION) $*.ftn\fR _ - + \fB\&.ftn.a\fR \fB$(COMPILE.ftn)\fR \fB-o\fR \fB$% $<\fR \fB$(AR) $(ARFLAGS) $@ $%\fR \fB$(RM) $%\fR _ - + \fB\&.ftn~.a\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.ftn\fR \fB$(COMPILE.ftn)\fR \fB-o\fR \fB$% $*.ftn\fR \fB$(AR) $(ARFLAGS) $@ $%\fR @@ -1803,7 +1803,7 @@ _ .sp .TS box; -cw(1.57i) |cw(3.93i) +cw(1.57i) |cw(3.93i) cw(1.57i) |cw(3.93i) . T{ \fITable of Standard Implicit (Suffix) Rules for lex Files\fR @@ -1816,42 +1816,42 @@ _ \fB$(LINK.c)\fR \fB-o\fR \fB$@ $*.c $(LDLIBS)\fR \fB$(RM) $*.c\fR _ - + \fB\&.l.c\fR \fB$(RM) $@\fR \fB$(LEX.l) $< > $@\fR _ - + \fB\&.l.ln\fR \fB$(RM) $*.c\fR \fB$(LEX.l) $< > $*.c\fR \fB$(LINT.c)\fR \fB-o\fR \fB$@\fR \fB-i\fR \fB$*.c\fR \fB$(RM) $*.c\fR _ - + \fB\&.l.o\fR \fB$(RM) $*.c\fR \fB$(LEX.l) $< > $*.c\fR \fB$(COMPILE.c)\fR \fB-o\fR \fB$@ $*.c\fR \fB$(RM) $*.c\fR _ - + \fB\&.l~\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.l\fR \fB$(LEX) $(LFLAGS) $*.l\fR \fB$(CC) $(CFLAGS)\fR \fB-c\fR \fBlex.yy.c\fR \fBrm\fR \fB-f\fR \fBlex.yy.c\fR \fBmv lex.yy.c $@\fR _ - + \fB\&.l~.c\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.l\fR \fB$(LEX) $(LFLAGS) $*.l\fR \fBmv lex.yy.c $@\fR _ - + \fB\&.l~.ln\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.l\fR \fB$(RM) $*.c\fR \fB$(LEX.l) $*.l > $*.c\fR \fB$(LINT.c)\fR \fB-o\fR \fB$@\fR \fB-i\fR \fB$*.c\fR \fB$(RM) $*.c\fR _ - + \fB\&.l~.o\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.l\fR \fB$(LEX) $(LFLAGS) $*.l\fR \fB$(CC) $(CFLAGS)\fR \fB-c\fR \fBlex.yy.c\fR @@ -1864,7 +1864,7 @@ _ .sp .TS box; -cw(1.57i) |cw(3.93i) +cw(1.57i) |cw(3.93i) cw(1.57i) |cw(3.93i) . T{ \fITable of Standard Implicit (Suffix) Rules for Modula 2 Files\fR @@ -1874,25 +1874,25 @@ _ _ \fB\&.mod\fR \fB$(COMPILE.mod)\fR \fB-o\fR \fB$@\fR \fB-e\fR \fB$@ $<\fR _ - + \fB\&.mod.o\fR \fB$(COMPILE.mod)\fR \fB-o\fR \fB$@ $<\fR _ - + \fB\&.def.sym\fR \fB$(COMPILE.def)\fR \fB-o\fR \fB$@ $<\fR _ - + \fB\&.def~.sym\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.def\fR \fB$(COMPILE.def)\fR \fB-o\fR\fB$@ $*.def\fR _ - + \fB\&.mod~\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.mod\fR \fB$(COMPILE.mod)\fR \fB-o\fR \fB$@\fR \fB-e\fR \fB$@ $*.mod\fR _ - + \fB\&.mod~.o\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.mod\fR \fB$(COMPILE.mod)\fR \fB-o\fR \fB$@ $*.mod\fR _ - + \fB\&.mod~.a\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.mod\fR \fB$(COMPILE.mod)\fR \fB-o\fR \fB$% $*.mod\fR \fB$(AR) $(ARFLAGS) $@ $%\fR @@ -1904,7 +1904,7 @@ _ .sp .TS box; -cw(1.57i) |cw(3.93i) +cw(1.57i) |cw(3.93i) cw(1.57i) |cw(3.93i) . T{ \fITable of Standard Implicit (Suffix) Rules for NeWS Files\fR @@ -1923,7 +1923,7 @@ _ .sp .TS box; -cw(1.57i) |cw(3.93i) +cw(1.57i) |cw(3.93i) cw(1.57i) |cw(3.93i) . T{ \fITable of Standard Implicit (Suffix) Rules for Pascal Files\fR @@ -1933,18 +1933,18 @@ _ _ \fB\&.p\fR \fB$(LINK.p)\fR \fB-o\fR \fB$@ $< $(LDLIBS)\fR _ - + \fB\&.p.o\fR \fB$(COMPILE.p) $(OUTPUT_OPTION) $<\fR _ - + \fB\&.p~\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.p\fR \fB$(LINK.p)\fR \fB-o\fR \fB$@ $*.p $(LDLIBS)\fR _ - + \fB\&.p~.o\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.p\fR \fB$(COMPILE.p) $(OUTPUT_OPTION) $*.p\fR _ - + \fB\&.p~.a\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.p\fR \fB$(COMPILE.p)\fR \fB-o\fR \fB$% $*.p\fR \fB$(AR) $(ARFLAGS) $@ $%\fR @@ -1956,7 +1956,7 @@ _ .sp .TS box; -cw(1.57i) |cw(3.93i) +cw(1.57i) |cw(3.93i) cw(1.57i) |cw(3.93i) . T{ \fITable of Standard Implicit (Suffix) Rules for Ratfor Files\fR @@ -1966,23 +1966,23 @@ _ _ \fB\&.r\fR \fB$(LINK.r)\fR \fB-o\fR \fB$@ $< $(LDLIBS)\fR _ - + \fB\&.r.o\fR \fB$(COMPILE.r) $(OUTPUT_OPTION) $<\fR _ - + \fB\&.r.a\fR \fB$(COMPILE.r)\fR \fB-o\fR \fB$% $<\fR \fB$(AR) $(ARFLAGS) $@ $%\fR \fB$(RM) $%\fR _ - + \fB\&.r~\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.r\fR \fB$(LINK.r)\fR \fB-o\fR \fB$@ $*.r $(LDLIBS)\fR _ - + \fB\&.r~.o\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.r\fR \fB$(COMPILE.r) $(OUTPUT_OPTION) $*.r\fR _ - + \fB\&.r~.a\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.r\fR \fB$(COMPILE.r)\fR \fB-o\fR \fB$% $*.r\fR \fB$(AR) $(ARFLAGS) $@ $%\fR @@ -1994,7 +1994,7 @@ _ .sp .TS box; -cw(1.57i) |cw(3.93i) +cw(1.57i) |cw(3.93i) cw(1.57i) |cw(3.93i) . T{ \fITable of Standard Implicit (Suffix) Rules for SCCS Files\fR @@ -2005,12 +2005,12 @@ _ \fB\&.SCCS_GET\fR T{ \fBsccs $(SCCSFLAGS) get $(SCCSGETFLAGS) $@\fR \fB-G\fR\fB$@\fR T} - + _ - + \fB\&.SCCS_GET_POSIX\fR \fBsccs $(SCCSFLAGS) get $(SCCSGETFLAGS) $@\fR _ - + \fB\&.GET_POSIX\fR \fB$(GET) $(GFLAGS) s.$@\fR .TE @@ -2019,7 +2019,7 @@ _ .sp .TS box; -cw(1.57i) |cw(3.93i) +cw(1.57i) |cw(3.93i) cw(1.57i) |cw(3.93i) . T{ \fITable of Standard Implicit (Suffix) Rules for Shell Scripts\fR @@ -2030,7 +2030,7 @@ _ \fB\&.sh\fR \fBcat $< >$@\fR \fBchmod +x $@\fR _ - + \fB\&.sh~\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.sh\fR \fBcp $*.sh $@\fR \fBchmod a+x $@\fR @@ -2041,7 +2041,7 @@ _ .sp .TS box; -cw(1.57i) |cw(3.93i) +cw(1.57i) |cw(3.93i) cw(1.57i) |cw(3.93i) . T{ \fITable of Standard Implicit (Suffix) Rules for yacc Files\fR @@ -2053,38 +2053,38 @@ _ \fB$(LINK.c)\fR \fB-o\fR \fB$@ y.tab.c $(LDLIBS)\fR \fB$(RM) y.tab.c\fR _ - + \fB\&.y.c\fR \fB$(YACC.y) $<\fR \fBmv y.tab.c $@\fR _ - + \fB\&.y.ln\fR \fB$(YACC.y) $<\fR \fB$(LINT.c)\fR \fB-o\fR \fB$@\fR \fB-i\fR \fBy.tab.c\fR \fB$(RM) y.tab.c\fR _ - + \fB\&.y.o\fR \fB$(YACC.y) $<\fR \fB$(COMPILE.c)\fR \fB-o\fR \fB$@ y.tab.c\fR \fB$(RM) y.tab.c\fR _ - + \fB\&.y~\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.y\fR \fB$(YACC) $(YFLAGS) $*.y\fR \fB$(COMPILE.c)\fR \fB-o\fR \fB$@ y.tab.c\fR \fB$(RM) y.tab.c\fR _ - + \fB\&.y~.c\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.y\fR \fB$(YACC) $(YFLAGS) $*.y\fR \fBmv y.tab.c $@\fR _ - + \fB\&.y~.ln\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.y\fR \fB$(YACC.y) $*.y\fR \fB$(LINT.c)\fR \fB-o\fR \fB$@\fR \fB-i\fR \fBy.tab.c\fR \fB$(RM) y.tab.c\fR _ - + \fB\&.y~.o\fR \fB$(GET) $(GFLAGS)\fR \fB-p\fR \fB$< > $*.y\fR \fB$(YACC) $(YFLAGS) $*.y\fR \fB$(CC) $(CFLAGS)\fR \fB-c\fR \fBy.tab.c\fR @@ -2158,7 +2158,7 @@ A target name of the form: .sp .in +2 .nf - \fIlib\fR((\fIsymbol\fR)) + \fIlib\fR((\fIsymbol\fR)) .fi .in -2 @@ -2198,7 +2198,7 @@ then \fIcommand\fR ; \e ... ; \e else \fIcommand\fR; \e ... ; \e -fi +fi .fi .in -2 @@ -2246,7 +2246,7 @@ of the form: .sp .in +2 .nf -$(\fIMACRO\|\fR:sh) +$(\fIMACRO\|\fR:sh) .fi .in -2 @@ -2284,7 +2284,7 @@ pgm: a.o b.o a.o: incl.h a.c cc -c a.c b.o: incl.h b.c - cc -c b.c + cc -c b.c .fi .in -2 @@ -2351,7 +2351,7 @@ output only once, when execution is complete. .ad .RS 17n Specify whether jobs should be executed in serial, or parallel. Equivalent to -passing the \fB-m\FR option. +passing the \fB-m\fR option. .RE .sp @@ -2567,7 +2567,7 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .SS "/usr/xpg4/bin/make" .TS box; -cw(2.75i) |cw(2.75i) +cw(2.75i) |cw(2.75i) lw(2.75i) |lw(2.75i) . ATTRIBUTE TYPE ATTRIBUTE VALUE _ @@ -2634,18 +2634,18 @@ for the indicated reason. .sp .ne 2 .na -\fB\fBRead of include file\fR \fBfile\fR \fBfailed\fR\fR +\fBRead of include file `\fR\fIfile\fR\fB' failed\fR .ad .sp .6 .RS 4n -The makefile indicated in an \fBinclude\fR directive was not found, or was +The makefile indicated in an \fBinclude\fR directive was not found or was inaccessible. .RE .sp .ne 2 .na -\fB\fBLoop detected when expanding macro value\fR \fImacro\fR\fB\&'\fR\fR +\fBLoop detected when expanding macro value `\fR\fImacro\fR\fB'\fR .ad .sp .6 .RS 4n @@ -2654,13 +2654,14 @@ A reference to the macro being defined was found in the definition. .sp .ne 2 -.na -\fB\fBCould not write state file\fR \fIfile\fR\fB\fR\fR -.ad +.nf +\fBCould not open temporary statefile `\fR\fIfile\fR\fB'\fR +\fBCould not delete old statefile `\fR\fIfile\fR\fB'\fR +.fi .sp .6 .RS 4n -You used the \fB\&.KEEP_STATE:\fR target, but do not have write permission on -the state file. +You used the \fB\&.KEEP_STATE:\fR target, but you do not have write permission +on the state file or on a temporary version of the file written first. .RE .sp diff --git a/usr/src/man/man1/mdb.1 b/usr/src/man/man1/mdb.1 index ebec5867ca..a9a7ff4e31 100644 --- a/usr/src/man/man1/mdb.1 +++ b/usr/src/man/man1/mdb.1 @@ -3227,11 +3227,11 @@ dcmds. .sp .ne 2 .na -\fB\fB::run\fR [ \fIargs\fR . . . ]\fR +\fB\fB::run\fR [ \fIargs\fR ... ]\fR .ad .br .na -\fB\fB:r\fR [ \fIargs\fR . . . ]\fR +\fB\fB:r\fR [ \fIargs\fR ... ]\fR .ad .sp .6 .RS 4n @@ -3481,7 +3481,7 @@ described under \fBSymbol Name Resolution\fR, above. .sp .ne 2 .na -\fB\fB::typeset\fR [ \fB-/\fR\fB-t\fR] \fIvariable-name\fR . . .\fR +\fB\fB::typeset\fR [ \fB-/\fR\fB-t\fR] \fIvariable-name\fR ...\fR .ad .sp .6 .RS 4n @@ -3507,7 +3507,7 @@ Unload the specified dmod. The list of active dmods can be printed using the .sp .ne 2 .na -\fB\fB::unset\fR \fIvariable-name\fR . . .\fR +\fB\fB::unset\fR \fIvariable-name\fR ...\fR .ad .sp .6 .RS 4n @@ -3597,7 +3597,7 @@ List the available walkers and print a brief description for each one. .sp .ne 2 .na -\fB\fB::whence\fR [ \fB-v\fR ] \fIname\fR . . .\fR +\fB\fB::whence\fR [ \fB-v\fR ] \fIname\fR ...\fR .ad .br .na @@ -3625,15 +3625,15 @@ and walker in order of precedence. .ad .br .na -\fB\fIaddr\fR [ ,\fIlen\fR ] \fB:a\fR [ \fIcmd\fR . . . ]\fR +\fB\fIaddr\fR [ ,\fIlen\fR ] \fB:a\fR [ \fIcmd\fR ... ]\fR .ad .br .na -\fB\fIaddr\fR [ ,\fIlen\fR ] \fB:p\fR [ \fIcmd\fR . \&. . ]\fR +\fB\fIaddr\fR [ ,\fIlen\fR ] \fB:p\fR [ \fIcmd\fR ... ]\fR .ad .br .na -\fB\fIaddr\fR [ ,\fIlen\fR ] \fB:w\fR [ \fIcmd\fR . . . ]\fR +\fB\fIaddr\fR [ ,\fIlen\fR ] \fB:w\fR [ \fIcmd\fR ... ]\fR .ad .sp .6 .RS 4n diff --git a/usr/src/man/man1/nm.1 b/usr/src/man/man1/nm.1 index e304bd7c02..bab19a4fd9 100644 --- a/usr/src/man/man1/nm.1 +++ b/usr/src/man/man1/nm.1 @@ -690,7 +690,7 @@ respectively: .sp .in +2 .nf -\fB"%s%s %s %d %d\n",\fR \fIlibrary/object name\fR, \fIname\fR\fB, type,\fR \fIvalue\fR, \e +\fB"%s%s %s %d %d\en",\fR \fIlibrary/object name\fR, \fIname\fR\fB, type,\fR \fIvalue\fR, \e \fBsize "%s%s %s %o %o\en",\fR \fIlibrary/object name\fR, \fIname\fR, \e \fBtype,\fR \fIvalue\fR \fB, size "%s%s %s %x %x\en",\fR \fIlibrary/object name\fR, \fIname\fR, \e \fBtype,\fR \fIvalue\fR\fB, size\fR diff --git a/usr/src/man/man1/od.1 b/usr/src/man/man1/od.1 index d2a7282744..0a261415d3 100644 --- a/usr/src/man/man1/od.1 +++ b/usr/src/man/man1/od.1 @@ -326,40 +326,40 @@ The following are named characters in \fBod\fR: .nf Value Name -\000 nul -\001 soh -\002 stx -\003 etx -\004 eot -\005 enq -\006 ack -\007 bel -\010 bs -\011 ht -\012 lf -\013 vt -\014 ff -\015 cr -\016 so -\017 si -\020 dle -\021 dc1 -\022 dc2 -\023 dc3 -\024 dc4 -\025 nak -\026 syn -\027 etb -\030 can -\031 em -\032 sub -\033 esc -\034 fs -\035 gs -\036 rs -\037 us -\040 sp -\177 del +\e000 nul +\e001 soh +\e002 stx +\e003 etx +\e004 eot +\e005 enq +\e006 ack +\e007 bel +\e010 bs +\e011 ht +\e012 lf +\e013 vt +\e014 ff +\e015 cr +\e016 so +\e017 si +\e020 dle +\e021 dc1 +\e022 dc2 +\e023 dc3 +\e024 dc4 +\e025 nak +\e026 syn +\e027 etb +\e030 can +\e031 em +\e032 sub +\e033 esc +\e034 fs +\e035 gs +\e036 rs +\e037 us +\e040 sp +\e177 del .fi .in -2 .sp diff --git a/usr/src/man/man1/pack.1 b/usr/src/man/man1/pack.1 index 9aa241f7cd..a66d61565b 100644 --- a/usr/src/man/man1/pack.1 +++ b/usr/src/man/man1/pack.1 @@ -314,4 +314,4 @@ CSI Enabled .sp .LP \fBcat\fR(1), \fBcompress\fR(1), \fBzcat\fR(1), \fBfgetattr\fR(3C), -\fBfsetattr\fR(3C)\fBattributes\fR(5), \fBenviron\fR(5), \fBlargefile\fR(5) +\fBfsetattr\fR(3C), \fBattributes\fR(5), \fBenviron\fR(5), \fBlargefile\fR(5) diff --git a/usr/src/man/man1/pax.1 b/usr/src/man/man1/pax.1 index 3f5d75b940..bc7b52048d 100644 --- a/usr/src/man/man1/pax.1 +++ b/usr/src/man/man1/pax.1 @@ -2790,7 +2790,7 @@ Standard See \fBstandards\fR(5). \fBchmod\fR(1), \fBcpio\fR(1), \fBed\fR(1), \fBprintf\fR(1), \fBtar\fR(1), \fBmkdir\fR(2), \fBlseek\fR(2), \fBstat\fR(2), \fBwrite\fR(2), \fBarchives.h\fR(3HEAD), \fBattributes\fR(5), \fBenviron\fR(5), -\fBfnmatch\fR(5), \fBformats\fR(5)\fBfsattr\fR(5), \fBlargefile\fR(5), +\fBfnmatch\fR(5), \fBformats\fR(5), \fBfsattr\fR(5), \fBlargefile\fR(5), \fBregex\fR(5), \fBstandards\fR(5) .sp .LP diff --git a/usr/src/man/man1/rsh.1 b/usr/src/man/man1/rsh.1 index e839e14c8d..114b11c908 100644 --- a/usr/src/man/man1/rsh.1 +++ b/usr/src/man/man1/rsh.1 @@ -78,7 +78,7 @@ EXAMPLES. .sp .LP If there is no locale setting in the initialization file of the login shell -(\fB\&.cshrc\fR, . . .) for a particular user, \fBrsh\fR always executes the +(\fB\&.cshrc\fR, ...) for a particular user, \fBrsh\fR always executes the command in the "C" locale instead of using the default locale of the remote machine. .sp diff --git a/usr/src/man/man1/shell_builtins.1 b/usr/src/man/man1/shell_builtins.1 index ab2575a8a6..a5121797a7 100644 --- a/usr/src/man/man1/shell_builtins.1 +++ b/usr/src/man/man1/shell_builtins.1 @@ -315,7 +315,7 @@ status of the last command executed. \fBlogout\fR(1), \fBnewgrp\fR(1), \fBnice\fR(1), \fBnohup\fR(1), \fBprint\fR(1), \fBprintf\fR(1), \fBpwd\fR(1), \fBread\fR(1), \fBreadonly\fR(1), \fBset\fR(1), \fBsh\fR(1), \fBshift\fR(1), \fBsleep\fR(1), -\fBsuspend\fR(1), \fBtest\fR(1)\fBtest\fR(1), \fBtest\fR(1B), \fBtime\fR(1), +\fBsuspend\fR(1), \fBtest\fR(1), \fBtest\fR(1B), \fBtime\fR(1), \fBtimes\fR(1), \fBtrap\fR(1), \fBtypeset\fR(1), \fBumask\fR(1), \fBwait\fR(1), \fBchdir\fR(2), \fBchmod\fR(2), \fBcreat\fR(2), \fBumask\fR(2), \fBgetopt\fR(3C), \fBprofile\fR(4), \fBenviron\fR(5) diff --git a/usr/src/man/man1/srchtxt.1 b/usr/src/man/man1/srchtxt.1 index 886d82f681..d6471dc746 100644 --- a/usr/src/man/man1/srchtxt.1 +++ b/usr/src/man/man1/srchtxt.1 @@ -18,16 +18,16 @@ bases .LP The \fBsrchtxt\fR utility is used to display all the text strings in message data bases, or to search for a text string in message data bases (see -\fBmkmsgs\fR(1)). These data bases are files in the directory\fB -/usr/lib/locale/\fIlocale\fR/LC_MESSAGES\fR (see \fBsetlocale\fR(3C)), unless a -file name given with the \fB-m\fR option contains a \fB/\fR. The directory -\fBlocale\fR can be viewed as the name of the language in which the text -strings are written. If the \fB-l\fR option is not specified, the files +\fBmkmsgs\fR(1)). These data bases are files in the directory +\fB/usr/lib/locale/\fR\fIlocale\fR\fB/LC_MESSAGES\fR (see \fBsetlocale\fR(3C)), +unless a file name given with the \fB-m\fR option contains a \fB/\fR. The +directory \fBlocale\fR can be viewed as the name of the language in which the +text strings are written. If the \fB-l\fR option is not specified, the files accessed will be determined by the value of the environment variable \fBLC_MESSAGES\fR. If \fBLC_MESSAGES\fR is not set, the files accessed will be determined by the value of the environment variable \fBLANG\fR. If \fBLANG\fR is not set, the files accessed will be in the directory -\fB/usr/lib/locale//C/LC_MESSAGES \fR, which contains default strings. +\fB/usr/lib/locale/C/LC_MESSAGES\fR, which contains default strings. .sp .LP If no \fItext\fR argument is present, then all the text strings in the files @@ -75,9 +75,10 @@ displayed. \fB\fB-l\fR\fI locale\fR \fR .ad .RS 14n -Access files in the directory \fB/usr/lib/locale/\fIlocale\fR/LC_MESSAGES\fR. -If \fB-m\fR \fImsgfile\fR is also supplied, \fIlOCALE\fR is ignored for -\fImsgfile\fRs containing a \fB/\fR. +Access files in the directory +\fB/usr/lib/locale/\fR\fIlocale\fR\fB/LC_MESSAGES\fR. If \fB-m\fR \fImsgfile\fR +is also supplied, \fIlOCALE\fR is ignored for \fImsgfile\fRs containing a +\fB/\fR. .RE .sp @@ -111,7 +112,7 @@ matches. \fItext\fR can take the form of a regular expression; see .LP If message files have been installed in a locale named \fBfrench\fR by using \fBmkmsgs\fR(1), then you could display the entire set of text strings in the -\fBfrench\fR locale (\fB/usr/lib/locale/french/LC_MESSAGES/* \fR) by typing: +\fBfrench\fR locale (\fB/usr/lib/locale/french/LC_MESSAGES/*\fR) by typing: .sp .in +2 @@ -127,7 +128,7 @@ example% srchtxt \(mil french .LP If a set of error messages associated with the operating system have been installed in the file \fBUX\fR in the \fBfrench\fR locale -(\fB/usr/lib/locale/french/LC_MESSAGE/UX \fR), then, using the value of the +(\fB/usr/lib/locale/french/LC_MESSAGE/UX\fR), then, using the value of the \fBLANG\fR environment variable to determine the locale to be searched, you could search that file in that locale for all error messages dealing with files by typing: @@ -143,7 +144,7 @@ example% srchtxt -m UX "[Ff]ichier" .sp .LP -If \fB/usr/lib/locale/french/LC_MESSAGES/UX \fR contained the following +If \fB/usr/lib/locale/french/LC_MESSAGES/UX\fR contained the following strings: .sp diff --git a/usr/src/man/man1/symorder.1 b/usr/src/man/man1/symorder.1 index 03b67bc818..f6dfbb619a 100644 --- a/usr/src/man/man1/symorder.1 +++ b/usr/src/man/man1/symorder.1 @@ -29,4 +29,4 @@ maintain scripts that are portable across a variety of operating systems. .SH SEE ALSO .sp .LP -\fBnlist\fR(3ELF), \fBattributes\fR(5), \fBksyms\fR(7D). +\fBnlist\fR(3ELF), \fBattributes\fR(5), \fBksyms\fR(7D) diff --git a/usr/src/man/man1/tnfdump.1 b/usr/src/man/man1/tnfdump.1 index 34f80539c4..77cfb22b6b 100644 --- a/usr/src/man/man1/tnfdump.1 +++ b/usr/src/man/man1/tnfdump.1 @@ -73,7 +73,7 @@ probe tnf_name: "end" tnf_string: "keys cookie main end;\e file cookie2.c;line 41;sunw%debug exiting program" ------------- ----------- ---- ------ --- ---------- ---------------- Elapsed (ms) Delta (ms) PID LWPID TID CPU Probe Data/ - Name Description . . . + Name Description ... ------------- ----------- ---- ------ --- ---------- ---------------- 0.000000 0.000000 8792 1 0 - inloop loop_count: 0 total_iterations: 0 diff --git a/usr/src/man/man1m/auditconfig.1m b/usr/src/man/man1m/auditconfig.1m index 24cb8927c2..6e200f5b71 100644 --- a/usr/src/man/man1m/auditconfig.1m +++ b/usr/src/man/man1m/auditconfig.1m @@ -39,8 +39,8 @@ administrator. \fBperzone\fR and \fBahlt\fR are described under the .ad .sp .6 .RS 4n -Set the non-attributable audit mask to the value set using the \fb-setnaflags\fR -option. For example: +Set the non-attributable audit mask to the value set using the +\fB-setnaflags\fR option. For example: .sp .in +2 .nf diff --git a/usr/src/man/man1m/auditd.1m b/usr/src/man/man1m/auditd.1m index d2658a1470..7778cdb297 100644 --- a/usr/src/man/man1m/auditd.1m +++ b/usr/src/man/man1m/auditd.1m @@ -52,7 +52,7 @@ conditions with the indicated options: .sp .6 .RS 4n The file system upon which \fIpathname\fR resides has exceeded the minimum free -space limit defined by the \fBp_minfree\fR attribute of the \fbaudit_binfile\fR +space limit defined by the \fBp_minfree\fR attribute of the \fBaudit_binfile\fR plugin. A new audit trail has been opened on another file system. .RE diff --git a/usr/src/man/man1m/autopush.1m b/usr/src/man/man1m/autopush.1m index 9ead69a11b..7f5f508074 100644 --- a/usr/src/man/man1m/autopush.1m +++ b/usr/src/man/man1m/autopush.1m @@ -173,7 +173,7 @@ Major Minor Lastminor Modules .sp .LP \fBdladm\fR(1M), \fBttymon\fR(1M), \fBattributes\fR(5), \fBldterm\fR(7M), -\fBsad\fR(7D), \fB streamio\fR(7I), \fBttcompat\fR(7M) +\fBsad\fR(7D), \fBstreamio\fR(7I), \fBttcompat\fR(7M) .sp .LP \fI\fR diff --git a/usr/src/man/man1m/dhcpagent.1m b/usr/src/man/man1m/dhcpagent.1m index 045056d89c..90cc77e321 100644 --- a/usr/src/man/man1m/dhcpagent.1m +++ b/usr/src/man/man1m/dhcpagent.1m @@ -847,11 +847,11 @@ Interface Stability Committed \fI\fR .sp .LP -Croft, B. and Gilmore, J.,\fIBootstrap Protocol (BOOTP)\fRRFC 951, Network +Croft, B. and Gilmore, J. \fIRFC 951, Bootstrap Protocol (BOOTP)\fR, Network Working Group, September 1985. .sp .LP -Droms, R., \fIDynamic Host Configuration Protocol\fR, RFC 2131, Network Working +Droms, R. \fIRFC 2131, Dynamic Host Configuration Protocol\fR, Network Working Group, March 1997. .sp .LP diff --git a/usr/src/man/man1m/format.1m b/usr/src/man/man1m/format.1m index 58b71a36e9..292a9ccea5 100644 --- a/usr/src/man/man1m/format.1m +++ b/usr/src/man/man1m/format.1m @@ -390,7 +390,7 @@ default data file .sp .LP \fBfmthard\fR(1M), \fBprtvtoc\fR(1M), \fBrmformat\fR(1), \fBformat.dat\fR(4), -\fBattributes\fR(5), \fB sd\fR(7D) +\fBattributes\fR(5), \fBsd\fR(7D) .sp .LP \fI\fR diff --git a/usr/src/man/man1m/fsck.1m b/usr/src/man/man1m/fsck.1m index 9b415adfe6..42fbf3a186 100644 --- a/usr/src/man/man1m/fsck.1m +++ b/usr/src/man/man1m/fsck.1m @@ -367,7 +367,7 @@ Interface Stability Committed .LP \fBclri\fR(1M), \fBfsck_ufs\fR(1M), \fBfsdb_ufs\fR(1M), \fBfsirand\fR(1M), \fBfstyp\fR(1M), \fBmkfs\fR(1M), \fBmkfs_ufs\fR(1M), -\fBmountall\fR(1M), \fBnewfs\fR(1M), \fBreboot\fR( 1M), \fBvfstab\fR(4), +\fBmountall\fR(1M), \fBnewfs\fR(1M), \fBreboot\fR(1M), \fBvfstab\fR(4), \fBattributes\fR(5), \fBlargefile\fR(5), \fBufs\fR(7FS) .SH WARNINGS .LP diff --git a/usr/src/man/man1m/fstyp.1m b/usr/src/man/man1m/fstyp.1m index bd29ad3e56..3b5c623d87 100644 --- a/usr/src/man/man1m/fstyp.1m +++ b/usr/src/man/man1m/fstyp.1m @@ -75,7 +75,7 @@ the index following the name in square brackets. .RE For instance, in the following example, "\fItop_list\fR" is a "name-value" list, consisting of a string array "\fIstring_array\fR" and a "name-value" list -array "\fIlist_array\fR". The second "list_array"element is an integer array +array "\fIlist_array\fR". The second "list_array" element is an integer array "\fIint_array\fR" containing three elements. .sp .in +2 diff --git a/usr/src/man/man1m/in.ndpd.1m b/usr/src/man/man1m/in.ndpd.1m index 2ce2643405..19d071df9b 100644 --- a/usr/src/man/man1m/in.ndpd.1m +++ b/usr/src/man/man1m/in.ndpd.1m @@ -199,7 +199,7 @@ Use of this option is equivalent to setting the \fBdebug\fR property to true. .sp .ne 2 .na -\fB\fB-f\fR \ \fIconfig_file\fR\fR +\fB-f\fR \fIconfig_file\fR .ad .sp .6 .RS 4n @@ -238,7 +238,7 @@ the hosts. \fBicmp6\fR(7P), \fBip6\fR(7P), \fBndp\fR(7P) .sp .LP -Narten, T., Nordmark, E., Simpson, W.\fIRFC 2461, Neighbor Discovery for IP +Narten, T., Nordmark, E., Simpson, W. \fIRFC 2461, Neighbor Discovery for IP Version 6 (IPv6)\fR. The Internet Society. December 1998. .sp .LP @@ -246,8 +246,8 @@ Thomson, S., Narten, T. \fIRFC 2462, IPv6 Stateless Address Autoconfiguration\fR. The Internet Society. December 1998. .sp .LP -Narten, T., and Draves, R. RFC 3041, Privacy Extensions for Stateless Address -Autoconfiguration in IPv6. The Internet Society. January 2001. +Narten, T., and Draves, R. \fIRFC 3041, Privacy Extensions for Stateless +Address Autoconfiguration in IPv6\fR. The Internet Society. January 2001. .SH DIAGNOSTICS .LP Receipt of a \fBSIGHUP\fR signal will make \fBin.ndpd\fR restart and reread diff --git a/usr/src/man/man1m/in.rarpd.1m b/usr/src/man/man1m/in.rarpd.1m index e62a4cc974..c6b911e53e 100644 --- a/usr/src/man/man1m/in.rarpd.1m +++ b/usr/src/man/man1m/in.rarpd.1m @@ -145,7 +145,7 @@ File or other source, as specified by \fBnsswitch.conf\fR(4). .LP \fBsvcs\fR(1), \fBboot\fR(1M), \fBifconfig\fR(1M), \fBsvcadm\fR(1M), \fBethers\fR(4), \fBhosts\fR(4), \fBnetconfig\fR(4), -\fBnsswitch.conf\fR(4),\fBattributes \fR(5), \fBsmf\fR(5), \fBdlpi\fR(7P) +\fBnsswitch.conf\fR(4), \fBattributes\fR(5), \fBsmf\fR(5), \fBdlpi\fR(7P) .sp .LP Finlayson, R., Mann, T., Mogul, J., and Theimer, M., \fIRFC 903, A Reverse diff --git a/usr/src/man/man1m/in.rshd.1m b/usr/src/man/man1m/in.rshd.1m index f5ea773773..d1bd3d70cf 100644 --- a/usr/src/man/man1m/in.rshd.1m +++ b/usr/src/man/man1m/in.rshd.1m @@ -75,7 +75,7 @@ and port number (in decimal) are the arguments passed to \fBin.rshd\fR. .RS +4 .TP 2. -The server reads characters from the socket up to a null (\fB\0\fR) byte. +The server reads characters from the socket up to a null (\fB\e0\fR) byte. The resultant string is interpreted as an \fBASCII\fR number, base 10. .RE .RS +4 @@ -272,11 +272,11 @@ module. l l l l l l l l . rsh auth required pam_rhosts_auth.so.1 - + rsh account required pam_unix_roles.so.1 rsh session required pam_unix_projects.so.1 rsh session required pam_unix_account.so.1 - + rsh session required pam_unix_session.so.1 .TE @@ -319,7 +319,7 @@ Kerberos configuration file. \fBrsh\fR(1), \fBsvcs\fR(1), \fBinetadm\fR(1M), \fBinetd\fR(1M), \fBkadmin\fR(1M), \fBsvcadm\fR(1M), \fBpam\fR(3PAM), \fBgetnameinfo\fR(3SOCKET), \fBhosts\fR(4), \fBkrb5.conf\fR(4), -\fBpam.conf\fR(4), \fB attributes\fR(5), \fBenviron\fR(5), +\fBpam.conf\fR(4), \fBattributes\fR(5), \fBenviron\fR(5), \fBkrb5_auth_rules\fR(5), \fBpam_authtok_check\fR(5), \fBpam_authtok_get\fR(5), \fBpam_authtok_store\fR(5), \fBpam_dhkeys\fR(5), \fBpam_passwd_auth\fR(5), \fBpam_rhosts_auth\fR(5), \fBpam_unix_account\fR(5), \fBpam_unix_auth\fR(5), diff --git a/usr/src/man/man1m/ipdadm.1m b/usr/src/man/man1m/ipdadm.1m index 38728aed67..90c396eef3 100644 --- a/usr/src/man/man1m/ipdadm.1m +++ b/usr/src/man/man1m/ipdadm.1m @@ -109,7 +109,7 @@ corruption, packet delay, and packet drop. .sp .ne 2 .na -\fBremove\fR \fIcorrupt\fR,\fIdelay\fI,\fIdrop\fR +\fBremove\fR \fIcorrupt\fR,\fIdelay\fR,\fIdrop\fR .ad .sp .6 .RS 4n diff --git a/usr/src/man/man1m/latencytop.1m b/usr/src/man/man1m/latencytop.1m index 0cf5625839..e0c7e7ee88 100644 --- a/usr/src/man/man1m/latencytop.1m +++ b/usr/src/man/man1m/latencytop.1m @@ -51,7 +51,7 @@ The following options are supported: .sp .ne 2 .na -\fB\fB-f\fR, \fB--feature\fR [no]\fIfeature1\fR,[no]\fIfeature2\fR,...\fR +\fB-f\fR, \fB--feature\fR [\fBno\fR]\fIfeature1\fR,[\fBno\fR]\fIfeature2\fR,... .ad .sp .6 .RS 4n @@ -60,7 +60,7 @@ following: .sp .ne 2 .na -\fB[\fBno\fR]\fBfilter\fR\fR +[\fBno\fR]\fBfilter\fR .ad .sp .6 .RS 4n @@ -71,7 +71,7 @@ Filter large interruptible latencies, for example, sleep. The default is .sp .ne 2 .na -\fB[\fBno\fR]\fBsched\fR\fR +[\fBno\fR]\fBsched\fR .ad .sp .6 .RS 4n @@ -81,7 +81,7 @@ Monitors \fBsched\fR (PID=0). The default is \fBoff\fR. .sp .ne 2 .na -\fB[\fBno\fR]\fBsobj\fR\fR +[\fBno\fR]\fBsobj\fR .ad .sp .6 .RS 4n @@ -91,7 +91,7 @@ Monitors synchronize objects. The default is \fBon\fR. .sp .ne 2 .na -\fB[\fBno\fR]\fBlow\fR\fR +[\fBno\fR]\fBlow\fR .ad .sp .6 .RS 4n diff --git a/usr/src/man/man1m/lpget.1m b/usr/src/man/man1m/lpget.1m index 3ba68b6202..19e2eeb388 100644 --- a/usr/src/man/man1m/lpget.1m +++ b/usr/src/man/man1m/lpget.1m @@ -163,7 +163,7 @@ Stability Level Stable .SH SEE ALSO .LP \fBldap\fR(1), \fBlp\fR(1), \fBlpc\fR(1B), \fBlpq\fR(1B), \fBlpr\fR(1B), -\fBlpstat\fR(1), \fBlpadmin \fR(1M), \fBlpset\fR(1M), \fBprinters\fR(4), +\fBlpstat\fR(1), \fBlpadmin\fR(1M), \fBlpset\fR(1M), \fBprinters\fR(4), \fBprinters.conf\fR(4), \fBattributes\fR(5), \fBstandards\fR(5) .sp .LP diff --git a/usr/src/man/man1m/lpshut.1m b/usr/src/man/man1m/lpshut.1m index e72d8103b3..30e58adfae 100644 --- a/usr/src/man/man1m/lpshut.1m +++ b/usr/src/man/man1m/lpshut.1m @@ -56,7 +56,7 @@ An error occurred. .sp .LP \fBlp\fR(1), \fBlpstat\fR(1), \fBlpadmin\fR(1M), \fBlpmove\fR(1M), -\fBlpsched\fR(1M), \fBattributes\fR( 5) +\fBlpsched\fR(1M), \fBattributes\fR(5) .sp .LP \fI\fR diff --git a/usr/src/man/man1m/luxadm.1m b/usr/src/man/man1m/luxadm.1m index 0892d542e7..71fc381a8c 100644 --- a/usr/src/man/man1m/luxadm.1m +++ b/usr/src/man/man1m/luxadm.1m @@ -1254,7 +1254,7 @@ An error occurred. .SH SEE ALSO .LP \fBdevlinks\fR(1M), \fBdisks\fR(1M), \fBattributes\fR(5), \fBenviron\fR(5), -\fBses\fR( 7D) +\fBses\fR(7D) .SH NOTES .LP Currently, only some device drivers diff --git a/usr/src/man/man1m/mount.1m b/usr/src/man/man1m/mount.1m index 06c4f10269..7f493fd757 100644 --- a/usr/src/man/man1m/mount.1m +++ b/usr/src/man/man1m/mount.1m @@ -28,7 +28,7 @@ mount, umount \- mount or unmount file systems and remote resources .LP .nf \fBmount\fR \fB-a\fR [\fB-F\fR \fIFSType\fR] [\fB-V\fR] [\fIcurrent_options\fR] - [\fB-o\fR \fIspecific_options\fR] [\fImount_point\fR]... + [\fB-o\fR \fIspecific_options\fR] [\fImount_points...\fR] .fi .LP @@ -38,7 +38,7 @@ mount, umount \- mount or unmount file systems and remote resources .LP .nf -\fBumount\fR \fB-a\fR [\fB-f\fR] [\fB-V\fR] [\fB-o\fR \fIspecific_options\fR] [\fImount_point\fR]... +\fBumount\fR \fB-a\fR [\fB-f\fR] [\fB-V\fR] [\fB-o\fR \fIspecific_options\fR] [\fImount_points...\fR] .fi .SH DESCRIPTION @@ -98,7 +98,7 @@ specified or must be determinable from \fB/etc/vfstab\fR, or by consulting .sp .ne 2 .na -\fB\fB-a\fR [ \fImount_points\fR. . . ]\fR +\fB\fB-a\fR [ \fImount_points\fR... ]\fR .ad .sp .6 .RS 4n diff --git a/usr/src/man/man1m/mount_hsfs.1m b/usr/src/man/man1m/mount_hsfs.1m index 7e88c90f1f..27296e0241 100644 --- a/usr/src/man/man1m/mount_hsfs.1m +++ b/usr/src/man/man1m/mount_hsfs.1m @@ -273,7 +273,7 @@ list of default parameters for each file system .sp .LP \fBlofiadm\fR(1M), \fBmount\fR(1M), \fBmountall\fR(1M), \fBmount\fR(2), -\fBmnttab\fR(4), \fBvfstab\fR(4), \fBattributes \fR(5) +\fBmnttab\fR(4), \fBvfstab\fR(4), \fBattributes\fR(5) .SH NOTES .sp .LP diff --git a/usr/src/man/man1m/mount_pcfs.1m b/usr/src/man/man1m/mount_pcfs.1m index 10d1d6c982..a8517ea47d 100644 --- a/usr/src/man/man1m/mount_pcfs.1m +++ b/usr/src/man/man1m/mount_pcfs.1m @@ -185,8 +185,8 @@ list of default parameters for each file system .sp .LP \fBlofiadm\fR(1M), \fBmount\fR(1M), \fBmountall\fR(1M), \fBmount\fR(2), -\fBstat\fR(2), \fBtime\fR(2), \fBmnttab\fR(4), \fBvfstab\fR(4), \fBattributes -\fR(5), \fBenviron\fR(5), \fBpcfs\fR(7FS) +\fBstat\fR(2), \fBtime\fR(2), \fBmnttab\fR(4), \fBvfstab\fR(4), +\fBattributes\fR(5), \fBenviron\fR(5), \fBpcfs\fR(7FS) .SH NOTES .sp .LP diff --git a/usr/src/man/man1m/mount_tmpfs.1m b/usr/src/man/man1m/mount_tmpfs.1m index 7ea64130bd..3a17cc9523 100644 --- a/usr/src/man/man1m/mount_tmpfs.1m +++ b/usr/src/man/man1m/mount_tmpfs.1m @@ -105,7 +105,7 @@ attributes. Overlay mount. Allow the file system to be mounted over an existing mount point, making the underlying file system inaccessible. If a mount is attempted on a pre-existing mount point without setting this flag, the mount will fail, -producing the error\f(CWdevice busy\fR. +producing the error: \f(CWdevice busy\fR. .RE .SH FILES diff --git a/usr/src/man/man1m/mount_udfs.1m b/usr/src/man/man1m/mount_udfs.1m index 564098ef90..9cdc5cbeed 100644 --- a/usr/src/man/man1m/mount_udfs.1m +++ b/usr/src/man/man1m/mount_udfs.1m @@ -97,7 +97,7 @@ fails if the file system is not currently mounted. Overlay mount. Allow the file system to be mounted over an existing mount point, making the underlying file system inaccessible. If a mount is attempted on a pre-existing mount point without setting this flag, the mount fails, -producing the error \f(CWdevice busy\fR. +producing the error: \f(CWdevice busy\fR. .RE .SH FILES diff --git a/usr/src/man/man1m/mountall.1m b/usr/src/man/man1m/mountall.1m index a581ba32eb..6a32474017 100644 --- a/usr/src/man/man1m/mountall.1m +++ b/usr/src/man/man1m/mountall.1m @@ -35,16 +35,16 @@ with the \fBmount at boot\fR field set to \fByes\fR in the .sp .LP For each file system in the file system table, the following logic is executed: -if there exists a file\fB/usr/lib/fs/\fIFSType\fR/fsckall\fR, where +if there exists a file \fB/usr/lib/fs/\fR\fIFSType\fR\fB/fsckall\fR, where \fIFSType\fR is the type of the file system, save that file system in a list to be passed later, and all at once, as arguments to the -\fB/usr/lib/fs/\fIFSType\fR/fsckall\fR script. The -\fB/usr/lib/fs/\fIFSType\fR/fsckall\fR script checks all of the file systems in -its argument list to determine whether they can be safely mounted. If no -\fB/usr/lib/fs/\fIFSType\fR/fsckall\fR script exists for the \fIFSType\fR of -the file system, the file system is individually checked using \fBfsck\fR(1M). -If the file system does not appear mountable, it is fixed using \fBfsck\fR -before the mount is attempted. File systems with a \(mi entry in the +\fB/usr/lib/fs/\fR\fIFSType\fR\fB/fsckall\fR script. The +\fB/usr/lib/fs/\fR\fIFSType\fR\fB/fsckall\fR script checks all of the file +systems in its argument list to determine whether they can be safely mounted. +If no \fB/usr/lib/fs/\fR\fIFSType\fR\fB/fsckall\fR script exists for the +\fIFSType\fR of the file system, the file system is individually checked using +\fBfsck\fR(1M). If the file system does not appear mountable, it is fixed using +\fBfsck\fR before the mount is attempted. File systems with a \(mi entry in the \fBfsckdev\fR field are mounted without first being checked. .sp .LP diff --git a/usr/src/man/man1m/pbind.1m b/usr/src/man/man1m/pbind.1m index 92ddfe5933..49a13a7cde 100644 --- a/usr/src/man/man1m/pbind.1m +++ b/usr/src/man/man1m/pbind.1m @@ -184,7 +184,7 @@ The processor \fBID\fR of the processor to be controlled or queried. .sp .ne 2 .na -\fB\fIcmd\fR \fI[args...]\fR +\fIcmd [args...]\fR .ad .sp .6 .RS 4n diff --git a/usr/src/man/man1m/ping.1m b/usr/src/man/man1m/ping.1m index 3e1fa05c5e..9733d6d717 100644 --- a/usr/src/man/man1m/ping.1m +++ b/usr/src/man/man1m/ping.1m @@ -428,8 +428,8 @@ machine was not alive. .SH DIAGNOSTICS .ne 2 .na -\fB\fBping: warning: ICMP responses received, but name service lookups -are taking a while. Use ping -n to disable name service lookups.\fB\fB +\fBping: warning: ICMP responses received, but name service lookups +are taking a while. Use ping -n to disable name service lookups.\fR .ad .sp .6 .RS 4n diff --git a/usr/src/man/man1m/poolcfg.1m b/usr/src/man/man1m/poolcfg.1m index 3b6973d0a2..1f326abc48 100644 --- a/usr/src/man/man1m/poolcfg.1m +++ b/usr/src/man/man1m/poolcfg.1m @@ -146,7 +146,7 @@ connections. .sp .ne 2 .na -\fBtransfer to [\fIresourcetype\fR] \fIname\fR[\fIcomponent-list\fR]\fR +\fBtransfer to\fR [\fIresourcetype\fR] \fIname\fR[\fIcomponent-list\fR] .ad .sp .6 .RS 4n diff --git a/usr/src/man/man1m/pppd.1m b/usr/src/man/man1m/pppd.1m index 0e7cc95459..712976375a 100644 --- a/usr/src/man/man1m/pppd.1m +++ b/usr/src/man/man1m/pppd.1m @@ -2301,8 +2301,8 @@ ABORT "Username/Password Incorrect" OK "at&f&d2&c1" OK "atdt2468135" "name:" "^Umyuserid" -"word:" "\qmypassword" -"ispts" "\q^Uppp" +"word:" "\eqmypassword" +"ispts" "\eq^Uppp" "~-^Uppp-~" .fi .in -2 diff --git a/usr/src/man/man1m/pppdump.1m b/usr/src/man/man1m/pppdump.1m index 9362560558..92630d6bc3 100644 --- a/usr/src/man/man1m/pppdump.1m +++ b/usr/src/man/man1m/pppdump.1m @@ -56,7 +56,7 @@ Reverses the direction indicators, so that `sent' is printed for bytes or packets received, and `rcvd' is printed for bytes or packets sent. .TP -.B -m \fImru +.BI "-m " mru Use \fImru\fR as the MRU (maximum receive unit) for both directions of the link when checking for over-length PPP packets (with the \fB-p\fR option). diff --git a/usr/src/man/man1m/printmgr.1m b/usr/src/man/man1m/printmgr.1m index 50d2404bfd..ef856807ba 100644 --- a/usr/src/man/man1m/printmgr.1m +++ b/usr/src/man/man1m/printmgr.1m @@ -115,7 +115,7 @@ server replication. .sp .LP Although users can use the LDAP command line utilities \fBldapadd\fR(1) and -\fBldapmodify\fR(1)to update printer entries in the directory, the preferred +\fBldapmodify\fR(1) to update printer entries in the directory, the preferred method is to use \fBlpset\fR. Otherwise, if the \fBlpadd\fR and \fBlpmodify\fR utilities are used, the administrator must ensure that the \fBprinter-name\fR attribute value is unique within the \fBou=printers\fR container on the LDAP diff --git a/usr/src/man/man1m/psrset.1m b/usr/src/man/man1m/psrset.1m index aa3e7e2aa0..8281dd0110 100644 --- a/usr/src/man/man1m/psrset.1m +++ b/usr/src/man/man1m/psrset.1m @@ -114,7 +114,7 @@ privilege. .sp .ne 2 .na -\fB\fB-b\fR [\fB-z\fr \fIzonename\fR]\fR +\fB-b\fR [\fB-z\fR \fIzonename\fR] .ad .RS 6n Bind all or a subset of the \fBLWP\fRs of the specified processes to the diff --git a/usr/src/man/man1m/rcapadm.1m b/usr/src/man/man1m/rcapadm.1m index 182d135896..99bc27e919 100644 --- a/usr/src/man/man1m/rcapadm.1m +++ b/usr/src/man/man1m/rcapadm.1m @@ -181,8 +181,8 @@ To set a persistent cap on memory usage within a zone, use \fBzonecfg\fR(1M). Enforcement .sp .LP -# \fBrcapadm -E -i scan=\fI15\fR,sample=\fI5\fR,report=\fI5\fR,config=\fI60\fR --c \fI0\fR\fR +# +.BI "rcapadm -E -i scan=" 15 ,sample= 5 ,report= 5 ,config= 60 " -c 0" .LP \fBExample 2 \fRSpecifying a Resource Cap for a Zone diff --git a/usr/src/man/man1m/rmt.1m b/usr/src/man/man1m/rmt.1m index 1aa7557997..b96237e703 100644 --- a/usr/src/man/man1m/rmt.1m +++ b/usr/src/man/man1m/rmt.1m @@ -144,7 +144,7 @@ Any other command causes \fBrmt\fR to exit. .SH SEE ALSO .LP \fBufsdump\fR(1M), \fBufsrestore\fR(1M), \fBIntro\fR(3), \fBioctl\fR(2), -\fBlseek\fR(2), \fBperror \fR(3C), \fBrcmd\fR(3SOCKET), \fBrexec\fR(3SOCKET), +\fBlseek\fR(2), \fBperror\fR(3C), \fBrcmd\fR(3SOCKET), \fBrexec\fR(3SOCKET), \fBattributes\fR(5), \fBmtio\fR(7I), \fBopen\fR(9E), \fBread\fR(9E), \fBwrite\fR(9E) .SH DIAGNOSTICS diff --git a/usr/src/man/man1m/saf.1m b/usr/src/man/man1m/saf.1m index a113e43576..56e7c77b6c 100644 --- a/usr/src/man/man1m/saf.1m +++ b/usr/src/man/man1m/saf.1m @@ -1037,7 +1037,7 @@ invalid. .sp .ne 2 .na -\fB\fBpush\fR \fImodule1\fR[,\fImodule2, module3\fR, . . .]\fR +\fB\fBpush\fR \fImodule1\fR[,\fImodule2, module3\fR, ...]\fR .ad .sp .6 .RS 4n diff --git a/usr/src/man/man1m/scadm.1m b/usr/src/man/man1m/scadm.1m index 12f130839a..ea5e80a080 100644 --- a/usr/src/man/man1m/scadm.1m +++ b/usr/src/man/man1m/scadm.1m @@ -567,7 +567,7 @@ Examples of \fIfile\fR are: .sp .in +2 .nf -\fB/usr/platform/\fIplatform_type\fR/lib/image/alommainfw\fR +\fB/usr/platform/\fR\fIplatform_type\fR\fB/lib/image/alommainfw\fR .fi .in -2 .sp @@ -576,7 +576,7 @@ or .sp .in +2 .nf -/usr/platform/\fIplatform_type\fR/lib/image/alombootfw +\fB/usr/platform/\fR\fIplatform_type\fR\fB/lib/image/alombootfw\fR .fi .in -2 .sp @@ -735,7 +735,7 @@ The \fB-usershow\fR subcommand supports the following arguments: .ad .sp .6 .RS 4n -Display information on SC account \fIusername\fR. If \fIusername\fRis not +Display information on SC account \fIusername\fR. If \fIusername\fR is not specified, all accounts are displayed. .RE diff --git a/usr/src/man/man1m/svcadm.1m b/usr/src/man/man1m/svcadm.1m index 1d647304b2..968095ea0e 100644 --- a/usr/src/man/man1m/svcadm.1m +++ b/usr/src/man/man1m/svcadm.1m @@ -21,7 +21,7 @@ svcadm \- manipulate service instances .LP .nf -\fB/usr/sbin/svcadm\fR [\fB-S state\fR] [\fB-v\fR] [\fB-Z\fR | \fB-z\fR \fIzone\fR] restart [\fB-d\fR] +\fB/usr/sbin/svcadm\fR [\fB-S state\fR] [\fB-v\fR] [\fB-Z\fR | \fB-z\fR \fIzone\fR] restart [\fB-d\fR] [{\fIFMRI\fR | \fIpattern\fR}...] .fi @@ -121,7 +121,7 @@ non-zero exit status. .sp .ne 2 .na -\fB\fBenable\fR \fB[\fR\fB-rst\fR\fB]\fR {\fIFMRI\fR | \fIpattern\fR}. . .\fR +\fB\fBenable\fR \fB[\fR\fB-rst\fR\fB]\fR {\fIFMRI\fR | \fIpattern\fR}...\fR .ad .sp .6 .RS 4n @@ -148,7 +148,7 @@ persistent across reboot. .sp .ne 2 .na -\fB\fBdisable\fR [\fB-st\fR] {\fIFMRI\fR | \fIpattern\fR}. . .\fR +\fB\fBdisable\fR [\fB-st\fR] {\fIFMRI\fR | \fIpattern\fR}...\fR .ad .sp .6 .RS 4n @@ -172,7 +172,7 @@ persistent across reboot. .sp .ne 2 .na -\fB\fBrestart\fR [\fB-d\fR] {\fIFMRI\fR | \fIpattern\fR}. . .\fR +\fB\fBrestart\fR [\fB-d\fR] {\fIFMRI\fR | \fIpattern\fR}...\fR .ad .sp .6 .RS 4n @@ -191,7 +191,7 @@ the service. .sp .ne 2 .na -\fB\fBrefresh\fR {\fIFMRI\fR | \fIpattern\fR}. . .\fR +\fB\fBrefresh\fR {\fIFMRI\fR | \fIpattern\fR}...\fR .ad .sp .6 .RS 4n @@ -213,7 +213,7 @@ group of the service instance (see \fBsmf_security\fR(5)). .sp .ne 2 .na -\fB\fBclear\fR {\fIFMRI\fR | \fIpattern\fR}. . .\fR +\fB\fBclear\fR {\fIFMRI\fR | \fIpattern\fR}...\fR .ad .sp .6 .RS 4n @@ -234,7 +234,7 @@ administrative manipulation. .ne 2 .na \fB\fBmark [\fR\fB-It\fR\fB]\fR \fIinstance_state\fR {\fIFMRI\fR | -\fIpattern\fR}. . .\fR +\fIpattern\fR}...\fR .ad .sp .6 .RS 4n diff --git a/usr/src/man/man1m/syncinit.1m b/usr/src/man/man1m/syncinit.1m index 2eda0dd927..98b10a1d6a 100644 --- a/usr/src/man/man1m/syncinit.1m +++ b/usr/src/man/man1m/syncinit.1m @@ -139,7 +139,7 @@ speed=0, loopback=no, echo=no, nrzi=no, txc=txc, rxc=rxc .SH SEE ALSO .LP \fBsyncloop\fR(1M), \fBsyncstat\fR(1M), \fBIntro\fR(2), \fBioctl\fR(2), -\fBattributes\fR(5), \fB zsh\fR(7D) +\fBattributes\fR(5), \fBzsh\fR(7D) .SH DIAGNOSTICS .ne 2 .na diff --git a/usr/src/man/man1m/tcpdchk.1m b/usr/src/man/man1m/tcpdchk.1m index 364bd96d8e..2699c95220 100644 --- a/usr/src/man/man1m/tcpdchk.1m +++ b/usr/src/man/man1m/tcpdchk.1m @@ -63,13 +63,14 @@ inetd(1M), how to invoke tcpd from inetd using the libwrap library. inetadm(1M), managing inetd services in the Service Management Framework. .SH AUTHORS -.na -Wietse Venema (wietse@wzv.win.tue.nl), -Department of Mathematics and Computing Science, +.nf +Wietse Venema (wietse@wzv.win.tue.nl) +Department of Mathematics and Computing Science Eindhoven University of Technology -Den Dolech 2, P.O. Box 513, +Den Dolech 2, P.O. Box 513 5600 MB Eindhoven, The Netherlands -\" @(#) tcpdchk.8 1.3 95/01/08 17:00:30 +.fi +.\" @(#) tcpdchk.8 1.3 95/01/08 17:00:30 .\" Begin Sun update .SH ATTRIBUTES See diff --git a/usr/src/man/man1m/tcpdmatch.1m b/usr/src/man/man1m/tcpdmatch.1m index 96929f238f..a2081b3ef5 100644 --- a/usr/src/man/man1m/tcpdmatch.1m +++ b/usr/src/man/man1m/tcpdmatch.1m @@ -82,7 +82,6 @@ The default locations of the \fItcpd\fR access control tables are: .br /etc/hosts.deny .SH SEE ALSO -.na .nf tcpdchk(1M), tcpd configuration checker hosts_access(4), format of the tcpd access control tables. @@ -92,13 +91,13 @@ inetd(1M), how to invoke tcpd from inetd using the libwrap library. inetadm(1M), managing inetd services in the Service Management Framework. .SH AUTHORS -.na -Wietse Venema (wietse@wzv.win.tue.nl), -Department of Mathematics and Computing Science, +.nf +Wietse Venema (wietse@wzv.win.tue.nl) +Department of Mathematics and Computing Science Eindhoven University of Technology -Den Dolech 2, P.O. Box 513, +Den Dolech 2, P.O. Box 513 5600 MB Eindhoven, The Netherlands -\" @(#) tcpdmatch.8 1.5 96/02/11 17:01:35 +.\" @(#) tcpdmatch.8 1.5 96/02/11 17:01:35 .\" Begin Sun update .SH ATTRIBUTES See diff --git a/usr/src/man/man1m/th_manage.1m b/usr/src/man/man1m/th_manage.1m index 011a8f3365..06b7dfa024 100644 --- a/usr/src/man/man1m/th_manage.1m +++ b/usr/src/man/man1m/th_manage.1m @@ -36,7 +36,7 @@ specified by \fIname\fR and \fIinstance\fR (or \fIpath\fR). The commands are: .RS 18n Awaken all \fBth_define\fR processes, causing them to display their current status and exit if the errdef is now defunct (that is, if \fIcount\fR, -\fIfailcount \fR, and \fIacc_chk \fR are all zero). +\fIfailcount\fR, and \fIacc_chk \fR are all zero). .RE .sp diff --git a/usr/src/man/man1m/uucheck.1m b/usr/src/man/man1m/uucheck.1m index 655fb535b6..e5272edfdf 100644 --- a/usr/src/man/man1m/uucheck.1m +++ b/usr/src/man/man1m/uucheck.1m @@ -115,7 +115,7 @@ information. .sp .LP \fBuucp\fR(1C), \fBuustat\fR(1C), \fBuux\fR(1C), \fBuucico\fR(1M), -\fBuusched\fR(1M), \fBattributes \fR(5) +\fBuusched\fR(1M), \fBattributes\fR(5) .SH BUGS .sp .LP diff --git a/usr/src/man/man1m/uuxqt.1m b/usr/src/man/man1m/uuxqt.1m index 0c08405fbd..ed6e08460c 100644 --- a/usr/src/man/man1m/uuxqt.1m +++ b/usr/src/man/man1m/uuxqt.1m @@ -106,4 +106,4 @@ detailed debugging information. .sp .LP \fBmail\fR(1), \fBuucp\fR(1C), \fBuustat\fR(1C), \fBuux\fR(1C), -\fBuucico\fR(1M), \fB attributes\fR(5) +\fBuucico\fR(1M), \fBattributes\fR(5) diff --git a/usr/src/man/man1m/zfs-program.1m b/usr/src/man/man1m/zfs-program.1m index d8acd4972a..be42dae84b 100644 --- a/usr/src/man/man1m/zfs-program.1m +++ b/usr/src/man/man1m/zfs-program.1m @@ -8,7 +8,7 @@ .\" http://www.illumos.org/license/CDDL. .\" .\" -.\" Copyright (c) 2016 by Delphix. All Rights Reserved. +.\" Copyright (c) 2016, 2017 by Delphix. All rights reserved. .\" .Dd January 21, 2016 .Dt ZFS-PROGRAM 1M @@ -361,6 +361,29 @@ dataset (string) .Bd -ragged -compact -offset "xxxx" Clone to be promoted. .Ed +.It Em zfs.sync.rollback(filesystem) +Rollback to the previous snapshot for a dataset. +Returns 0 on successful rollback, or a nonzero error code otherwise. +Rollbacks can be performed on filesystems or zvols, but not on snapshots +or mounted datasets. +EBUSY is returned in the case where the filesystem is mounted. +.Pp +filesystem (string) +.Bd -ragged -compact -offset "xxxx" +Filesystem to rollback. +.Ed +.It Em zfs.sync.snapshot(dataset) +Create a snapshot of a filesystem. +Returns 0 if the snapshot was successfully created, +and a nonzero error code otherwise. +.Pp +Note: Taking a snapshot will fail on any pool older than legacy version 27. +To enable taking snapshots from ZCP scripts, the pool must be upgraded. +.Pp +dataset (string) +.Bd -ragged -compact -offset "xxxx" +Name of snapshot to create. +.Ed .El .It Sy zfs.check submodule For each function in the zfs.sync submodule, there is a corresponding zfs.check @@ -380,6 +403,8 @@ The available zfs.check functions are: .Bl -tag -width "xx" .It Em zfs.check.destroy(dataset, [defer=true|false]) .It Em zfs.check.promote(dataset) +.It Em zfs.check.rollback(filesystem) +.It Em zfs.check.snapshot(dataset) .El .It Sy zfs.list submodule The zfs.list submodule provides functions for iterating over datasets and diff --git a/usr/src/man/man1m/zonecfg.1m b/usr/src/man/man1m/zonecfg.1m index b668c32cc4..bb1b72ac37 100644 --- a/usr/src/man/man1m/zonecfg.1m +++ b/usr/src/man/man1m/zonecfg.1m @@ -1419,7 +1419,10 @@ suitable for use in a command file. .sp .ne 2 .na -\fB\fBhelp [usage] [\fIsubcommand\fR] [syntax] [\fR\fIcommand-name\fR\fB]\fR\fR +.BR "help " [ usage ] +.RI [ subcommand ] +[syntax] +.RI [ command-name ] .ad .sp .6 .RS 4n diff --git a/usr/src/man/man2/fcntl.2 b/usr/src/man/man2/fcntl.2 index 0506896118..5d20fde59e 100644 --- a/usr/src/man/man2/fcntl.2 +++ b/usr/src/man/man2/fcntl.2 @@ -974,7 +974,7 @@ reading. The \fIcmd\fR argument is \fBF_GETLK\fR, \fBF_GETLK64\fR, \fBF_SETLK\fR, \fBF_SETLK64\fR, \fBF_SETLKW\fR, \fBF_SETLKW64\fR, \fBF_OFD_GETLK\fR, \fBF_OFD_GETLK64\fR, \fBF_OFD_SETLK\fR, \fBF_OFD_SETLK64\fR, \fBF_OFD_SETLKW\fR, -\fBF_OFD_SETLKW64\fB, \fBF_SHARE\fR, \fBF_UNSHARE\fR, or \fBF_FREESP\fR and the +\fBF_OFD_SETLKW64\fR, \fBF_SHARE\fR, \fBF_UNSHARE\fR, or \fBF_FREESP\fR and the \fIarg\fR argument points to an illegal address. .RE diff --git a/usr/src/man/man2/getacct.2 b/usr/src/man/man2/getacct.2 index f7dd397362..08635e0c09 100644 --- a/usr/src/man/man2/getacct.2 +++ b/usr/src/man/man2/getacct.2 @@ -164,4 +164,4 @@ MT-Level Async-Signal-Safe .SH SEE ALSO .sp .LP -\fBea_pack_object\fR(3EXACCT), \fBlibexacct\fR(3LIB)\fBattributes\fR(5) +\fBea_pack_object\fR(3EXACCT), \fBlibexacct\fR(3LIB), \fBattributes\fR(5) diff --git a/usr/src/man/man3/hosts_access.3 b/usr/src/man/man3/hosts_access.3 index 95032c4baf..5a3842002d 100644 --- a/usr/src/man/man3/hosts_access.3 +++ b/usr/src/man/man3/hosts_access.3 @@ -88,6 +88,7 @@ with other code that relies on strtok(). Wietse Venema (wietse@wzv.win.tue.nl) Department of Mathematics and Computing Science Eindhoven University of Technology -Den Dolech 2, P.O. Box 513, +Den Dolech 2, P.O. Box 513 5600 MB Eindhoven, The Netherlands -\" @(#) hosts_access.3 1.8 96/02/11 17:01:26 +.fi +.\" @(#) hosts_access.3 1.8 96/02/11 17:01:26 diff --git a/usr/src/man/man3c/catopen.3c b/usr/src/man/man3c/catopen.3c index 4adcfa7562..a2df0915ce 100644 --- a/usr/src/man/man3c/catopen.3c +++ b/usr/src/man/man3c/catopen.3c @@ -33,9 +33,9 @@ pathname for the message catalog; otherwise, the environment variable \fBNLSPATH\fR is used and \fB/usr/lib/locale/\fR\fIlocale\fR\fB/LC_MESSAGES\fR must exist. If \fBNLSPATH\fR does not exist in the environment, or if a message catalog cannot be opened in any of the paths specified by \fBNLSPATH\fR, then -the default path \fB/usr/lib/locale/\fIlocale\fR/LC_MESSAGES\fR is used. In the -"C" locale, \fBcatopen()\fR will always succeed without checking the default -search path. +the default path \fB/usr/lib/locale/\fR\fIlocale\fR\fB/LC_MESSAGES\fR is used. +In the "C" locale, \fBcatopen()\fR will always succeed without checking the +default search path. .sp .LP The names of message catalogs and their location in the filesystem can vary diff --git a/usr/src/man/man3c/ctype.3c b/usr/src/man/man3c/ctype.3c index f8a0cc044b..b897b8934c 100644 --- a/usr/src/man/man3c/ctype.3c +++ b/usr/src/man/man3c/ctype.3c @@ -131,7 +131,7 @@ characters are classified according to the rules of the \fBUS-ASCII\fR 7-bit coded character set. .LP The functions \fBisalnum_l()\fR, \fBisalpha_l()\fR, \fBisblank_l()\fR, -\fBiscntrl_l\fR, \fBisdigit_l()\fR, \fBisgraph_l()\fr, +\fBiscntrl_l\fR, \fBisdigit_l()\fR, \fBisgraph_l()\fR, \fBislower_l()\fR, \fBisprint_l()\fR, \fBispunct_l()\fR, \fBisspace_l()\fR, \fBisupper_l()\fR, and \fBisxdigit_l()\fR all behave identically to their counterparts without the '\fB_l\fR' prefix, except diff --git a/usr/src/man/man3c/dlinfo.3c b/usr/src/man/man3c/dlinfo.3c index 9118e591b1..8f5eea96a7 100644 --- a/usr/src/man/man3c/dlinfo.3c +++ b/usr/src/man/man3c/dlinfo.3c @@ -460,7 +460,7 @@ MT-Level MT-Safe \fBld\fR(1), \fBld.so.1\fR(1), \fBexec\fR(2), \fBioctl\fR(2), \fBmmapobj\fR(2), \fBdirname\fR(3C), \fBdlclose\fR(3C), \fBdldump\fR(3C), \fBdlerror\fR(3C), \fBdlopen\fR(3C), \fBdlsym\fR(3C), \fBputenv\fR(3C), \fBrealpath\fR(3C), -\fBthr_kill\fR(3C), \fBattributes\fR(5). +\fBthr_kill\fR(3C), \fBattributes\fR(5) .sp .LP \fILinker and Libraries Guide\fR diff --git a/usr/src/man/man3c/dup2.3c b/usr/src/man/man3c/dup2.3c index a2742a732f..f889752c3d 100644 --- a/usr/src/man/man3c/dup2.3c +++ b/usr/src/man/man3c/dup2.3c @@ -41,7 +41,7 @@ The \fBdup2()\fR function is equivalent to \fBfcntl\fR(\fIfildes\fR, Ths \fBdup3()\fR function works similarly to the \fBdup2()\fR function with two exceptions. If \fIfildes\fR and \fIfildes2\fR point to the same file descriptor, -1 is returned and errno set to \fBEINVAL\fR. If \fIflags\fR -is \fBO_CLOEXEC\fR, then \fIfiledes2\fB will have the \fBFD_CLOEXEC\fR flag +is \fBO_CLOEXEC\fR, then \fIfiledes2\fR will have the \fBFD_CLOEXEC\fR flag set causing the file descriptor to be closed during any future call of \fBexec\fR(2). .SH RETURN VALUES @@ -100,7 +100,8 @@ Additionally, the \fBdup3()\fR function will fail if: \fB\fBEINVAL\fR\fR .ad .RS 10n -\fIflags\fR has a value other than 0 or \fBO_CLOEXEC\fR or \fIfildes\fR and \fIfildes2\fB point to the same file descriptor. +\fIflags\fR has a value other than 0 or \fBO_CLOEXEC\fR or \fIfildes\fR and +\fIfildes2\fR point to the same file descriptor. .RE .SH ATTRIBUTES diff --git a/usr/src/man/man3c/epoll_ctl.3c b/usr/src/man/man3c/epoll_ctl.3c index dac849d5c3..4d63d084f9 100644 --- a/usr/src/man/man3c/epoll_ctl.3c +++ b/usr/src/man/man3c/epoll_ctl.3c @@ -4,7 +4,7 @@ .\" Common Development and Distribution License ("CDDL"), version 1.0. .\" You may only use this file in accordance with the terms of version .\" 1.0 of the CDDL. -.\" +.\" .\" A full copy of the text of the CDDL should have accompanied this .\" source. A copy of the CDDL is also available via the Internet at .\" http://www.illumos.org/license/CDDL. @@ -191,8 +191,8 @@ exclusive; a stream can never be writable if a hangup has occurred. However, this event and \fBEPOLLIN\fR, \fBEPOLLRDNORM\fR, \fBEPOLLRDBAND\fR, \fBEPOLLRDHUP\fR or \fBEPOLLPRI\fR are not mutually exclusive. This flag is only valid in the -the \fIevents\fR field returned from \fBepoll_wait\fR(3C); it is not used -in the \fIevents\fR field specified via \fBepoll_ctl()\fR. +\fIevents\fR field returned from \fBepoll_wait\fR(3C); it is not used in the +\fIevents\fR field specified via \fBepoll_ctl()\fR. .RE .sp diff --git a/usr/src/man/man3c/fopen.3c b/usr/src/man/man3c/fopen.3c index 7413fa58ba..fbc07a282f 100644 --- a/usr/src/man/man3c/fopen.3c +++ b/usr/src/man/man3c/fopen.3c @@ -403,6 +403,6 @@ respects this function is Standard. .SH SEE ALSO .LP \fBenable_extended_FILE_stdio\fR(3C), \fBfclose\fR(3C), -\fRfcloseall\fR(3C), \fBfdopen\fR(3C), \fBfflush\fR(3C), +\fBfcloseall\fR(3C), \fBfdopen\fR(3C), \fBfflush\fR(3C), \fBfreopen\fR(3C), \fBfsetpos\fR(3C), \fBrewind\fR(3C), \fBopen\fR(2), \fBattributes\fR(5), \fBlf64\fR(5), \fBstandards\fR(5) diff --git a/usr/src/man/man3c/getopt.3c b/usr/src/man/man3c/getopt.3c index a5f6e50979..83f7b5d350 100644 --- a/usr/src/man/man3c/getopt.3c +++ b/usr/src/man/man3c/getopt.3c @@ -183,7 +183,7 @@ main(int argc, char *argv[ ]) char *ofile; extern char *optarg; extern int optind, optopt; - . . . + ... while ((c = getopt(argc, argv, ":abf:o:")) != -1) { switch(c) { case 'a': @@ -218,12 +218,12 @@ main(int argc, char *argv[ ]) } } if (errflg) { - fprintf(stderr, "usage: . . . "); + fprintf(stderr, "usage: ... "); exit(2); } for ( ; optind < argc; optind++) { if (access(argv[optind], R_OK)) { - . . . + ... } .fi .in -2 diff --git a/usr/src/man/man3c/gettext.3c b/usr/src/man/man3c/gettext.3c index b0a272753c..4f08aee444 100644 --- a/usr/src/man/man3c/gettext.3c +++ b/usr/src/man/man3c/gettext.3c @@ -282,8 +282,7 @@ system default location for file containing messages for language .sp .ne 2 .na -\fB\fB/usr/lib/locale/\fR\fIlocale\fR\fB/LC_XXX/\fR\fIdomainname\fR\fB\&.mo\fR\ -fR +\fB\fB/usr/lib/locale/\fR\fIlocale\fR\fB/LC_XXX/\fR\fIdomainname\fR\fB\&.mo\fR\fR .ad .sp .6 .RS 4n diff --git a/usr/src/man/man3c/getws.3c b/usr/src/man/man3c/getws.3c index 5a812e9e1e..c1485a0687 100644 --- a/usr/src/man/man3c/getws.3c +++ b/usr/src/man/man3c/getws.3c @@ -91,4 +91,4 @@ MT-Level MT-Safe .LP \fBferror\fR(3C), \fBfgetwc\fR(3C), \fBfread\fR(3C), \fBgetwc\fR(3C), \fBputws\fR(3C), \fBscanf\fR(3C), \fBungetc\fR(3C), -\fBungetwc\fR(3C)\fBattributes\fR(5), \fBstandards\fR(5) +\fBungetwc\fR(3C), \fBattributes\fR(5), \fBstandards\fR(5) diff --git a/usr/src/man/man3c/mblen.3c b/usr/src/man/man3c/mblen.3c index ef4d8d60cd..de03ce4b37 100644 --- a/usr/src/man/man3c/mblen.3c +++ b/usr/src/man/man3c/mblen.3c @@ -33,7 +33,7 @@ If \fIs\fR is not a null pointer, \fBmblen()\fR and \fBmblen_l()\fR determine the number of bytes constituting the character pointed to by \fIs\fR. The call .IP -\fBmblen(\fIs\fR, \fIn\fR)\fR; +\fBmblen\fR(\fIs\fR, \fIn\fR); .LP is equivalent to: .IP diff --git a/usr/src/man/man3c/memory.3c b/usr/src/man/man3c/memory.3c index 02102892ab..368956c97f 100644 --- a/usr/src/man/man3c/memory.3c +++ b/usr/src/man/man3c/memory.3c @@ -96,7 +96,7 @@ overlap, the behavior is undefined. .sp .LP The \fBmemmem()\fR function searches for the \fIs_len\fR long byte pattern -\fIs\fR in the memory region starting at \fBl\fR for \fl_len\fR bytes. If a +\fIs\fR in the memory region starting at \fIl\fR for \fIl_len\fR bytes. If a match is found, a pointer to the starting location in \fIl\fR is returned. If no match is found, \fIl_len\fR is zero, \fIs_len\fR is zero, or \fIl_len\fR is less than \fIs_len\fR, then a null pointer is return. diff --git a/usr/src/man/man3c/mkfifo.3c b/usr/src/man/man3c/mkfifo.3c index e77e35ff12..5923982c22 100644 --- a/usr/src/man/man3c/mkfifo.3c +++ b/usr/src/man/man3c/mkfifo.3c @@ -46,7 +46,7 @@ of the process. .sp .LP The \fBmkfifoat()\fR function is equivalent to \fBmkfifo()\fR; however, if -\fIpath\fr is a relative path, then it is resolved start at the directory +\fIpath\fR is a relative path, then it is resolved start at the directory represented by \fIfd\fR. \fIfd\fR may be set to the special value of \fBAT_FDCWD\fR which indicates that the current working directory should be used to start resolving \fIpath\fR. diff --git a/usr/src/man/man3c/port_associate.3c b/usr/src/man/man3c/port_associate.3c index 1d8e34d1a8..7dd2250d0c 100644 --- a/usr/src/man/man3c/port_associate.3c +++ b/usr/src/man/man3c/port_associate.3c @@ -104,7 +104,7 @@ occurs. .LP The event types that can be specified at \fBport_associate()\fR time for \fBPORT_SOURCE_FILE\fR are \fBFILE_ACCESS\fR, \fBFILE_MODIFIED\fR, -\fBFILE_ATTRIB\fR, and \fbFILE_TRUNC\fR. The first three of these correspond +\fBFILE_ATTRIB\fR, and \fBFILE_TRUNC\fR. The first three of these correspond to the three time stamps: an \fBfo_atime\fR change results in the \fBFILE_ACCESS\fR event, an \fBfo_mtime\fR change results in the \fBFILE_MODIFIED\fR event, and an \fBfo_ctime\fR change results in the diff --git a/usr/src/man/man3c/posix_spawn_pipe_np.3c b/usr/src/man/man3c/posix_spawn_pipe_np.3c index 68515a5992..2b56173e73 100644 --- a/usr/src/man/man3c/posix_spawn_pipe_np.3c +++ b/usr/src/man/man3c/posix_spawn_pipe_np.3c @@ -86,7 +86,7 @@ function return value to indicate the error. .SH ERRORS .sp .LP -See \fBposix_spawn\fB(3C). +See \fBposix_spawn\fR(3C). .SH ATTRIBUTES .sp diff --git a/usr/src/man/man3c/pthread_getschedparam.3c b/usr/src/man/man3c/pthread_getschedparam.3c index 7422b78b62..8050cf814f 100644 --- a/usr/src/man/man3c/pthread_getschedparam.3c +++ b/usr/src/man/man3c/pthread_getschedparam.3c @@ -178,7 +178,7 @@ Standard See \fBstandards\fR(5). .sp .LP \fBpthread_attr_init\fR(3C), \fBsched_getparam\fR(3C), -\fBsched_get_priority_max\fR(3C)\fBsched_get_priority_max\fR(3C), +\fBsched_get_priority_max\fR(3C), \fBsched_get_priority_max\fR(3C), \fBsched_get_priority_min\fR(3C), \fBsched_setparam\fR(3C), \fBsched_getscheduler\fR(3C), \fBsched_setscheduler\fR(3C), \fBattributes\fR(5), \fBpthreads\fR(5), \fBstandards\fR(5) diff --git a/usr/src/man/man3c/rctlblk_set_value.3c b/usr/src/man/man3c/rctlblk_set_value.3c index 9e96b2ea18..1bfee97216 100644 --- a/usr/src/man/man3c/rctlblk_set_value.3c +++ b/usr/src/man/man3c/rctlblk_set_value.3c @@ -409,7 +409,7 @@ main() raction, raction == RCTL_LOCAL_SIGNAL ? rsignal : 0); (void) printf("Value: %llu\en", rctlblk_get_value(rblk)); - (void) printf("\tEnforced value: %llu\en", + (void) printf("\etEnforced value: %llu\en", rctlblk_get_enforced_value(rblk)); return (0); diff --git a/usr/src/man/man3c/seekdir.3c b/usr/src/man/man3c/seekdir.3c index 2b8dfd0b99..070957a1ba 100644 --- a/usr/src/man/man3c/seekdir.3c +++ b/usr/src/man/man3c/seekdir.3c @@ -31,7 +31,7 @@ associated with the directory stream when \fBtelldir()\fR was performed. .LP If the value of \fIloc\fR was not obtained from an earlier call to \fBtelldir()\fR or if a call to \fBrewinddir\fR(3C) occurred between the call -to \fBtelldir\fR \fB()\fR and the call to \fBseekdir()\fR, the results of +to \fBtelldir()\fR and the call to \fBseekdir()\fR, the results of subsequent calls to \fBreaddir()\fR are unspecified. .SH RETURN VALUES .sp diff --git a/usr/src/man/man3c/sem_timedwait.3c b/usr/src/man/man3c/sem_timedwait.3c index 874365e41c..d5f667d8e8 100644 --- a/usr/src/man/man3c/sem_timedwait.3c +++ b/usr/src/man/man3c/sem_timedwait.3c @@ -154,5 +154,5 @@ For \fBsem_timedwait()\fR, see \fBstandards\fR(5). .sp .LP \fBsemctl\fR(2), \fBsemget\fR(2), \fBsemop\fR(2), \fBtime\fR(2), -\fBsem_post\fR(3C), \fBsem_trywait\fR(3C)\fBsem_wait\fR(3C), +\fBsem_post\fR(3C), \fBsem_trywait\fR(3C), \fBsem_wait\fR(3C), \fBattributes\fR(5), \fBstandards\fR(5) diff --git a/usr/src/man/man3c/string.3c b/usr/src/man/man3c/string.3c index 25207eb151..d4ee96be45 100644 --- a/usr/src/man/man3c/string.3c +++ b/usr/src/man/man3c/string.3c @@ -327,7 +327,7 @@ identical to \fBstrdup()\fR, execept it copies at most \fIn\fR bytes from \fBs1\fR and ensures the copied string is awlays null terminated. .LP The functions \fBstrdupa()\fR and \fBstrndupa()\fR behave identically to -\fBstrdup()\fr and \fBstrndup()\fR respectively; however, instead of allocating +\fBstrdup()\fR and \fBstrndup()\fR respectively; however, instead of allocating memory using \fBmalloc\fR(3C), they use \fBalloca\fR(3C). These functions are provided for compatibility only, their use is strongly discouraged due to their use of \fBalloca\fR(3C). @@ -559,8 +559,8 @@ For all except \fBstrlcat()\fR, \fBstrlcpy()\fR, and \fBstrsep()\fR, see .SH SEE ALSO .LP \fBmalloc\fR(3C), -\fBnewlocale(3C), \fBsetlocale\fR(3C), \fBstrxfrm\fR(3C), \fBuselocale\fR(3C), -\fBattributes\fR(5), \fBstandards\fR(5) +\fBnewlocale\fR(3C), \fBsetlocale\fR(3C), \fBstrxfrm\fR(3C), +\fBuselocale\fR(3C), \fBattributes\fR(5), \fBstandards\fR(5) .SH NOTES .LP When compiling multithreaded applications, the \fB_REENTRANT\fR flag must be diff --git a/usr/src/man/man3c/strtod.3c b/usr/src/man/man3c/strtod.3c index 8e71e67310..985379c091 100644 --- a/usr/src/man/man3c/strtod.3c +++ b/usr/src/man/man3c/strtod.3c @@ -230,12 +230,12 @@ what_kind_of_number (char *s) double d; long l; d = strtod(s, &endp); - if (s != endp && *endp == `\0') + if (s != endp && *endp == '\e0') printf("It's a float with value %g\en", d); else { l = strtol(s, &endp, 0); - if (s != endp && *endp == `\e0') + if (s != endp && *endp == '\e0') printf("It's an integer with value %ld\en", 1); else return 1; diff --git a/usr/src/man/man3c/towupper.3c b/usr/src/man/man3c/towupper.3c index c8c86eef72..7606e698e1 100644 --- a/usr/src/man/man3c/towupper.3c +++ b/usr/src/man/man3c/towupper.3c @@ -70,6 +70,6 @@ MT-Level MT-Safe .SH SEE ALSO .BR newlocale (3C), .BR setlocale (3C), -.BR toupper(3C), +.BR toupper (3C), .BR uselocale (3C), .BR locale (5) diff --git a/usr/src/man/man3c/vprintf.3c b/usr/src/man/man3c/vprintf.3c index 28ebcb7626..59d37c769b 100644 --- a/usr/src/man/man3c/vprintf.3c +++ b/usr/src/man/man3c/vprintf.3c @@ -106,7 +106,7 @@ routine: .nf #include <stdio.h> #include <stdarg.h> -\&. . . +\&.\|.\|. /* * error should be called like * error(function_name, format, arg1, \&.\|.\|.); diff --git a/usr/src/man/man3cpc/cpc_bind_event.3cpc b/usr/src/man/man3cpc/cpc_bind_event.3cpc index 23b372da83..26344cb5b7 100644 --- a/usr/src/man/man3cpc/cpc_bind_event.3cpc +++ b/usr/src/man/man3cpc/cpc_bind_event.3cpc @@ -306,7 +306,7 @@ Interface Stability Obsolete .SH SEE ALSO .sp .LP -\fBcpustat\fR(1M), \fBcputrack\fR(1), \fBwrite\fR(2). \fBcpc\fR(3CPC), +\fBcpustat\fR(1M), \fBcputrack\fR(1), \fBwrite\fR(2), \fBcpc\fR(3CPC), \fBcpc_access\fR(3CPC), \fBcpc_bind_curlwp\fR(3CPC), \fBcpc_set_sample\fR(3CPC), \fBcpc_strtoevent\fR(3CPC), \fBcpc_unbind\fR(3CPC), \fBlibcpc\fR(3LIB), \fBattributes\fR(5) diff --git a/usr/src/man/man3cpc/cpc_getcpuver.3cpc b/usr/src/man/man3cpc/cpc_getcpuver.3cpc index d51ba41301..a48b7f929c 100644 --- a/usr/src/man/man3cpc/cpc_getcpuver.3cpc +++ b/usr/src/man/man3cpc/cpc_getcpuver.3cpc @@ -130,7 +130,7 @@ Interface Stability Obsolete .LP \fBcpc\fR(3CPC), \fBcpc_access\fR(3CPC), \fBcpc_cciname\fR(3CPC), \fBcpc_cpuref\fR(3CPC), \fBcpc_npic\fR(3CPC), -\fBcpc_walk_events_all\fR(3CPC)\fBlibcpc\fR(3LIB), \fBattributes\fR(5) +\fBcpc_walk_events_all\fR(3CPC), \fBlibcpc\fR(3LIB), \fBattributes\fR(5) .SH NOTES .sp .LP diff --git a/usr/src/man/man3dat/dat_evd_dequeue.3dat b/usr/src/man/man3dat/dat_evd_dequeue.3dat index 0c78bf0edc..339ea1bdec 100644 --- a/usr/src/man/man3dat/dat_evd_dequeue.3dat +++ b/usr/src/man/man3dat/dat_evd_dequeue.3dat @@ -183,4 +183,4 @@ MT-Level Safe \fBdat_cr_accept\fR(3DAT), \fBdat_cr_handoff\fR(3DAT), \fBdat_cr_reject\fR(3DAT), \fBdat_ep_connect\fR(3DAT), \fBdat_ep_dup_connect\fR(3DAT), \fBdat_ep_free\fR(3DAT), -\fBdat_evd_wait\fR(3DAT)\fBlibdat\fR(3LIB), \fBattributes\fR(5) +\fBdat_evd_wait\fR(3DAT), \fBlibdat\fR(3LIB), \fBattributes\fR(5) diff --git a/usr/src/man/man3gen/regexpr.3gen b/usr/src/man/man3gen/regexpr.3gen index 42ac5c38f2..ba5a2e3f6d 100644 --- a/usr/src/man/man3gen/regexpr.3gen +++ b/usr/src/man/man3gen/regexpr.3gen @@ -134,12 +134,12 @@ regular expression. .in +2 .nf #include<regexpr.h> - . . . +\&... if(compile(*argv, (char *)0, (char *)0) == (char *)0) - regerr(regerrno); - . . . -if (step(linebuf, expbuf)) - succeed(\|); + regerr(regerrno); +\&... +if (step(linebuf, expbuf)) + succeed(\|); .fi .in -2 diff --git a/usr/src/man/man3gss/gss_export_name.3gss b/usr/src/man/man3gss/gss_export_name.3gss index 1ac8762758..b6c484b4b5 100644 --- a/usr/src/man/man3gss/gss_export_name.3gss +++ b/usr/src/man/man3gss/gss_export_name.3gss @@ -112,7 +112,7 @@ MT-Level Safe .sp .LP \fBgss_accept_sec_context\fR(3GSS), \fBgss_canonicalize_name\fR(3GSS), -\fBgss_release_buffer\fR(3GSS)\fBmemory\fR(3C), \fBattributes\fR(5) +\fBgss_release_buffer\fR(3GSS), \fBmemory\fR(3C), \fBattributes\fR(5) .sp .LP \fISolaris Security for Developers Guide\fR diff --git a/usr/src/man/man3head/regex.h.3head b/usr/src/man/man3head/regex.h.3head index 55d9f06116..32d0610306 100644 --- a/usr/src/man/man3head/regex.h.3head +++ b/usr/src/man/man3head/regex.h.3head @@ -170,7 +170,7 @@ Trailing '\e' in pattern. \fB\fBREG_ESUBREG\fR\fR .ad .RS 16n -Number in \\fIdigit\fR invalid or in error. +Number in \fIdigit\fR invalid or in error. .RE .sp diff --git a/usr/src/man/man3kvm/kvm_read.3kvm b/usr/src/man/man3kvm/kvm_read.3kvm index bed997c10f..9147a34417 100644 --- a/usr/src/man/man3kvm/kvm_read.3kvm +++ b/usr/src/man/man3kvm/kvm_read.3kvm @@ -66,5 +66,5 @@ MT-Level Unsafe .SH SEE ALSO .sp .LP -\fBkvm_getu\fR(3KVM), \fBkvm_kread\fR(3KVM)\fBkvm_nlist\fR(3KVM), +\fBkvm_getu\fR(3KVM), \fBkvm_kread\fR(3KVM), \fBkvm_nlist\fR(3KVM), \fBkvm_open\fR(3KVM), \fBattributes\fR(5) diff --git a/usr/src/man/man3ldap/ldap_search.3ldap b/usr/src/man/man3ldap/ldap_search.3ldap index e598d9b031..092ca22a01 100644 --- a/usr/src/man/man3ldap/ldap_search.3ldap +++ b/usr/src/man/man3ldap/ldap_search.3ldap @@ -95,7 +95,7 @@ test, or can contain text and *'s interspersed to achieve substring matching. .LP For example, the filter \fBmail=*\fR finds entries that have a mail attribute. The filter \fBmail=*@terminator.rs.itd.umich.edu\fR finds entries that have a -mail attribute ending in the specified string. Use a backslash (\fB\\fR) to +mail attribute ending in the specified string. Use a backslash (\fB\e\fR) to escape parentheses characters in a filter. See RFC 1588 for a more complete description of the filters that are allowed. See \fBldap_getfilter\fR(3LDAP) for functions to help construct search filters automatically. diff --git a/usr/src/man/man3m/acos.3m b/usr/src/man/man3m/acos.3m index 7af66e7a98..1fc940f292 100644 --- a/usr/src/man/man3m/acos.3m +++ b/usr/src/man/man3m/acos.3m @@ -2,14 +2,14 @@ .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH acos 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH ACOS 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME acos, acosf, acosl \- arc cosine functions .SH SYNOPSIS @@ -73,7 +73,7 @@ These functions will fail if: \fBDomain Error\fR .ad .RS 16n -.rt +.rt The \fIx\fR argument is finite and not in the range [-1,1], or is \(+-Inf. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -105,15 +105,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/acosh.3m b/usr/src/man/man3m/acosh.3m index dc3c482333..15cc05ef27 100644 --- a/usr/src/man/man3m/acosh.3m +++ b/usr/src/man/man3m/acosh.3m @@ -3,11 +3,11 @@ .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Copyright (c) 1983 Regents of the University of California. All rights reserved. The Berkeley software License Agreement specifies the terms and conditions for redistribution. .\" Portions Copyright (c) 2002, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. -.TH acosh 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH ACOSH 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME acosh, acoshf, acoshl \- inverse hyperbolic cosine functions .SH SYNOPSIS @@ -69,7 +69,7 @@ These functions will fail if: \fBDomain Error\fR .ad .RS 16n -.rt +.rt The \fIx\fR argument is finite and less than 1.0, or is \(miInf. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -101,15 +101,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/asin.3m b/usr/src/man/man3m/asin.3m index 2a71a3feaf..2da24299c5 100644 --- a/usr/src/man/man3m/asin.3m +++ b/usr/src/man/man3m/asin.3m @@ -2,14 +2,14 @@ .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH asin 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH ASIN 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME asin, asinf, asinl \- arc sine function .SH SYNOPSIS @@ -77,7 +77,7 @@ These functions will fail if: \fBDomain Error\fR .ad .RS 16n -.rt +.rt The \fIx\fR argument is finite and not in the range [\(mi1,1], or is \(+-Inf. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -109,15 +109,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/asinh.3m b/usr/src/man/man3m/asinh.3m index 0e49abaad4..b01b447ac6 100644 --- a/usr/src/man/man3m/asinh.3m +++ b/usr/src/man/man3m/asinh.3m @@ -1,13 +1,13 @@ '\" te .\" Copyright (c) 1992, X/Open Company Limited All Rights Reserved Portions Copyright (c) 2002, Sun Microsystems, Inc. All Rights Reserved -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH asinh 3M "1 Sep 2002" "SunOS 5.11" "Mathematical Library Functions" +.TH ASINH 3M "Sep 1, 2002" "SunOS 5.11" "Mathematical Library Functions" .SH NAME asinh, asinhf, asinhl \- inverse hyperbolic sine functions .SH SYNOPSIS @@ -56,15 +56,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/atan.3m b/usr/src/man/man3m/atan.3m index 5fd5a711a3..8867cdec82 100644 --- a/usr/src/man/man3m/atan.3m +++ b/usr/src/man/man3m/atan.3m @@ -2,14 +2,14 @@ .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH atan 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH ATAN 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME atan, atanf, atanl \- arc tangent function .SH SYNOPSIS @@ -73,15 +73,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/atan2.3m b/usr/src/man/man3m/atan2.3m index ece70e3f0c..e98d3dda0c 100644 --- a/usr/src/man/man3m/atan2.3m +++ b/usr/src/man/man3m/atan2.3m @@ -2,14 +2,14 @@ .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH atan2 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH ATAN2 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME atan2, atan2f, atan2l \- arc tangent function .SH SYNOPSIS @@ -136,19 +136,19 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO .sp .LP -\fBatan\fR(3M), \fBisnan\fR(3M), \fBmath.h\fR(3HEAD)\fBtan\fR(3M), +\fBatan\fR(3M), \fBisnan\fR(3M), \fBmath.h\fR(3HEAD), \fBtan\fR(3M), \fBattributes\fR(5), \fBstandards\fR(5) diff --git a/usr/src/man/man3m/atanh.3m b/usr/src/man/man3m/atanh.3m index 3f5dd486e2..eb64dfa381 100644 --- a/usr/src/man/man3m/atanh.3m +++ b/usr/src/man/man3m/atanh.3m @@ -2,14 +2,14 @@ .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH atanh 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH ATANH 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME atanh, atanhf, atanhl \- inverse hyperbolic tangent functions .SH SYNOPSIS @@ -74,7 +74,7 @@ These functions will fail if: \fBDomain Error\fR .ad .RS 16n -.rt +.rt The \fIx\fR argument is finite and not in the range [-1,1], or is \(+-Inf. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -91,7 +91,7 @@ of \fIx\fR is greater than 1.0. \fBPole Error\fR .ad .RS 16n -.rt +.rt The \fIx\fR argument is \(+-1. .sp If the integer expression (math_errhandling & MATH_ERREXCEPT) is non-zero, then @@ -123,15 +123,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/cabs.3m b/usr/src/man/man3m/cabs.3m index 201f920b5b..22c5ea23dc 100644 --- a/usr/src/man/man3m/cabs.3m +++ b/usr/src/man/man3m/cabs.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH cabs 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH CABS 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME cabs, cabsf, cabsl \- return a complex absolute value .SH SYNOPSIS @@ -51,15 +51,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/cacos.3m b/usr/src/man/man3m/cacos.3m index a13816d553..1a009b0dfc 100644 --- a/usr/src/man/man3m/cacos.3m +++ b/usr/src/man/man3m/cacos.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH cacos 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH CACOS 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME cacos, cacosf, cacosl \- complex arc cosine functions .SH SYNOPSIS @@ -56,15 +56,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/cacosh.3m b/usr/src/man/man3m/cacosh.3m index b578750e01..d978731dc4 100644 --- a/usr/src/man/man3m/cacosh.3m +++ b/usr/src/man/man3m/cacosh.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH cacosh 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH CACOSH 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME cacosh, cacoshf, cacoshl \- complex arc hyperbolic cosine functions .SH SYNOPSIS @@ -61,15 +61,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/carg.3m b/usr/src/man/man3m/carg.3m index b3b3802167..5c0fa5a502 100644 --- a/usr/src/man/man3m/carg.3m +++ b/usr/src/man/man3m/carg.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH carg 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH CARG 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME carg, cargf, cargl \- complex argument functions .SH SYNOPSIS @@ -59,15 +59,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/casin.3m b/usr/src/man/man3m/casin.3m index b498c898e3..bfe708df57 100644 --- a/usr/src/man/man3m/casin.3m +++ b/usr/src/man/man3m/casin.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH casin 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH CASIN 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME casin, casinf, casinl \- complex arc sine functions .SH SYNOPSIS @@ -60,15 +60,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/casinh.3m b/usr/src/man/man3m/casinh.3m index 7c1f973dcb..e72d52e6b6 100644 --- a/usr/src/man/man3m/casinh.3m +++ b/usr/src/man/man3m/casinh.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH casinh 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH CASINH 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME casinh, casinhf, casinhl \- complex arc hyperbolic sine functions .SH SYNOPSIS @@ -61,15 +61,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/catan.3m b/usr/src/man/man3m/catan.3m index bf8c5e241e..aacc3031c3 100644 --- a/usr/src/man/man3m/catan.3m +++ b/usr/src/man/man3m/catan.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH catan 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH CATAN 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME catan, catanf, catanl \- complex arc tangent functions .SH SYNOPSIS @@ -68,15 +68,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/catanh.3m b/usr/src/man/man3m/catanh.3m index 465f9e4ed2..45d9f2db35 100644 --- a/usr/src/man/man3m/catanh.3m +++ b/usr/src/man/man3m/catanh.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH catanh 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH CATANH 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME catanh, catanhf, catanhl \- complex arc hyperbolic tangent functions .SH SYNOPSIS @@ -61,15 +61,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/cbrt.3m b/usr/src/man/man3m/cbrt.3m index 2798da8e2d..591c233952 100644 --- a/usr/src/man/man3m/cbrt.3m +++ b/usr/src/man/man3m/cbrt.3m @@ -2,14 +2,14 @@ .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH cbrt 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH CBRT 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME cbrt, cbrtf, cbrtl \- cube root functions .SH SYNOPSIS @@ -57,15 +57,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/ccos.3m b/usr/src/man/man3m/ccos.3m index d142b57ada..b0ed307d4c 100644 --- a/usr/src/man/man3m/ccos.3m +++ b/usr/src/man/man3m/ccos.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH ccos 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH CCOS 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME ccos, ccosf, ccosl \- complex cosine functions .SH SYNOPSIS @@ -50,15 +50,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/ccosh.3m b/usr/src/man/man3m/ccosh.3m index d470a6b07a..1f27ba4df0 100644 --- a/usr/src/man/man3m/ccosh.3m +++ b/usr/src/man/man3m/ccosh.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH ccosh 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH CCOSH 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME ccosh, ccoshf, ccoshl \- complex hyperbolic cosine functions .SH SYNOPSIS @@ -50,15 +50,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/ceil.3m b/usr/src/man/man3m/ceil.3m index 7e4d2586e1..ac4b5c3ccf 100644 --- a/usr/src/man/man3m/ceil.3m +++ b/usr/src/man/man3m/ceil.3m @@ -2,14 +2,14 @@ .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH ceil 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH CEIL 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME ceil, ceilf, ceill \- ceiling value function .SH SYNOPSIS @@ -61,15 +61,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/cexp.3m b/usr/src/man/man3m/cexp.3m index 140f8b3658..7bddbca1e8 100644 --- a/usr/src/man/man3m/cexp.3m +++ b/usr/src/man/man3m/cexp.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH cexp 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH CEXP 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME cexp, cexpf, cexpl \- complex exponential functions .SH SYNOPSIS @@ -50,15 +50,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/cimag.3m b/usr/src/man/man3m/cimag.3m index 16e776c944..6151fa4b1c 100644 --- a/usr/src/man/man3m/cimag.3m +++ b/usr/src/man/man3m/cimag.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH cimag 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH CIMAG 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME cimag, cimagf, cimagl \- complex imaginary functions .SH SYNOPSIS @@ -50,15 +50,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/clog.3m b/usr/src/man/man3m/clog.3m index f11cc044a5..c999d5c435 100644 --- a/usr/src/man/man3m/clog.3m +++ b/usr/src/man/man3m/clog.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH clog 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH CLOG 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME clog, clogf, clogl \- complex natural logarithm functions .SH SYNOPSIS @@ -53,15 +53,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/conj.3m b/usr/src/man/man3m/conj.3m index c02288bf63..bf794703df 100644 --- a/usr/src/man/man3m/conj.3m +++ b/usr/src/man/man3m/conj.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH conj 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH CONJ 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME conj, conjf, conjl \- complex conjugate functions .SH SYNOPSIS @@ -51,15 +51,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/copysign.3m b/usr/src/man/man3m/copysign.3m index 0f101f665a..a39fffc7e9 100644 --- a/usr/src/man/man3m/copysign.3m +++ b/usr/src/man/man3m/copysign.3m @@ -2,14 +2,14 @@ .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH copysign 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH COPYSIGN 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME copysign, copysignf, copysignl \- number manipulation function .SH SYNOPSIS @@ -53,15 +53,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/cos.3m b/usr/src/man/man3m/cos.3m index 023f211d14..09dc7bbc7c 100644 --- a/usr/src/man/man3m/cos.3m +++ b/usr/src/man/man3m/cos.3m @@ -2,14 +2,14 @@ .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH cos 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH COS 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME cos, cosf, cosl \- cosine function .SH SYNOPSIS @@ -59,7 +59,7 @@ These functions will fail if: \fBDomain Error\fR .ad .RS 16n -.rt +.rt The \fIx\fR argument is \(+-Inf. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -83,15 +83,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/cosh.3m b/usr/src/man/man3m/cosh.3m index 5144e1b959..855d1f7e23 100644 --- a/usr/src/man/man3m/cosh.3m +++ b/usr/src/man/man3m/cosh.3m @@ -2,14 +2,14 @@ .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH cosh 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH COSH 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME cosh, coshf, coshl \- hyperbolic cosine function .SH SYNOPSIS @@ -69,7 +69,7 @@ These functions will fail if: \fBRange Error\fR .ad .RS 15n -.rt +.rt The result would cause an overflow. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -101,15 +101,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/cpow.3m b/usr/src/man/man3m/cpow.3m index cb6fca6081..b78442a5cf 100644 --- a/usr/src/man/man3m/cpow.3m +++ b/usr/src/man/man3m/cpow.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH cpow 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH CPOW 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME cpow, cpowf, cpowl \- complex power functions .SH SYNOPSIS @@ -52,15 +52,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/cproj.3m b/usr/src/man/man3m/cproj.3m index c471752d3e..850066b5e0 100644 --- a/usr/src/man/man3m/cproj.3m +++ b/usr/src/man/man3m/cproj.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH cproj 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH CPROJ 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME cproj, cprojf, cprojl \- complex projection functions .SH SYNOPSIS @@ -61,15 +61,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/creal.3m b/usr/src/man/man3m/creal.3m index f3e6c90c99..e7c51cf421 100644 --- a/usr/src/man/man3m/creal.3m +++ b/usr/src/man/man3m/creal.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH creal 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH CREAL 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME creal, crealf, creall \- complex real functions .SH SYNOPSIS @@ -61,15 +61,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/csin.3m b/usr/src/man/man3m/csin.3m index 33f79c7a51..d88abbf3bd 100644 --- a/usr/src/man/man3m/csin.3m +++ b/usr/src/man/man3m/csin.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH csin 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH CSIN 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME csin, csinf, csinl \- complex sine functions .SH SYNOPSIS @@ -50,15 +50,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/csinh.3m b/usr/src/man/man3m/csinh.3m index 16a5e7db7c..e293865b3a 100644 --- a/usr/src/man/man3m/csinh.3m +++ b/usr/src/man/man3m/csinh.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH csinh 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH CSINH 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME csinh, csinhf, csinhl \- complex hyperbolic sine functions .SH SYNOPSIS @@ -50,15 +50,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/csqrt.3m b/usr/src/man/man3m/csqrt.3m index 1038b7c580..626574f14e 100644 --- a/usr/src/man/man3m/csqrt.3m +++ b/usr/src/man/man3m/csqrt.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH csqrt 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH CSQRT 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME csqrt, csqrtf, csqrtl \- complex square root functions .SH SYNOPSIS @@ -52,15 +52,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/ctan.3m b/usr/src/man/man3m/ctan.3m index b3b2901bc1..df26478e02 100644 --- a/usr/src/man/man3m/ctan.3m +++ b/usr/src/man/man3m/ctan.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH ctan 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH CTAN 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME ctan, ctanf, ctanl \- complex tangent functions .SH SYNOPSIS @@ -50,15 +50,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/ctanh.3m b/usr/src/man/man3m/ctanh.3m index 0d3490ad3d..cdadf8ed05 100644 --- a/usr/src/man/man3m/ctanh.3m +++ b/usr/src/man/man3m/ctanh.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH ctanh 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH CTANH 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME ctanh, ctanhf, ctanhl \- complex hyperbolic tangent functions .SH SYNOPSIS @@ -50,15 +50,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/erf.3m b/usr/src/man/man3m/erf.3m index d30fdd89e3..dbc42aeacb 100644 --- a/usr/src/man/man3m/erf.3m +++ b/usr/src/man/man3m/erf.3m @@ -8,11 +8,11 @@ .\" specifies the terms and conditions for redistribution. .\" Portions Copyright (c) 2006, Sun Microsystems, .\" Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. -.TH erf 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH ERF 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME erf, erff, erfl \- error function .SH SYNOPSIS @@ -70,15 +70,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/erfc.3m b/usr/src/man/man3m/erfc.3m index 4f451278d2..9a4a2f6eb4 100644 --- a/usr/src/man/man3m/erfc.3m +++ b/usr/src/man/man3m/erfc.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH erfc 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH ERFC 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME erfc, erfcf, erfcl \- complementary error function .SH SYNOPSIS @@ -70,15 +70,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/exp.3m b/usr/src/man/man3m/exp.3m index d751dda290..abd7049691 100644 --- a/usr/src/man/man3m/exp.3m +++ b/usr/src/man/man3m/exp.3m @@ -2,14 +2,14 @@ .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH exp 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH EXP 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME exp, expf, expl \- exponential function .SH SYNOPSIS @@ -69,7 +69,7 @@ These functions will fail if: \fBRange Error\fR .ad .RS 15n -.rt +.rt The result overflows. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -101,15 +101,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/exp2.3m b/usr/src/man/man3m/exp2.3m index 1eb9f59a4f..1866a7917a 100644 --- a/usr/src/man/man3m/exp2.3m +++ b/usr/src/man/man3m/exp2.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH exp2 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH EXP2 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME exp2, exp2f, exp2l \- exponential base 2 functions .SH SYNOPSIS @@ -66,7 +66,7 @@ These functions will fail if: \fBRange Error\fR .ad .RS 15n -.rt +.rt The result overflows. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -90,15 +90,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/expm1.3m b/usr/src/man/man3m/expm1.3m index c68701f110..9ed20321f0 100644 --- a/usr/src/man/man3m/expm1.3m +++ b/usr/src/man/man3m/expm1.3m @@ -2,14 +2,14 @@ .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH expm1 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH EXPM1 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME expm1, expm1f, expm1l \- compute exponential function .SH SYNOPSIS @@ -62,7 +62,7 @@ These functions will fail if: \fBRange Error\fR .ad .RS 15n -.rt +.rt The result overflows. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -106,15 +106,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/fabs.3m b/usr/src/man/man3m/fabs.3m index 79de9d06f8..c153829313 100644 --- a/usr/src/man/man3m/fabs.3m +++ b/usr/src/man/man3m/fabs.3m @@ -2,14 +2,14 @@ .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH fabs 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH FABS 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME fabs, fabsf, fabsl \- absolute value function .SH SYNOPSIS @@ -61,15 +61,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/fdim.3m b/usr/src/man/man3m/fdim.3m index c2fd56b999..97cc1b350d 100644 --- a/usr/src/man/man3m/fdim.3m +++ b/usr/src/man/man3m/fdim.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH fdim 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH FDIM 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME fdim, fdimf, fdiml \- compute positive difference between two floating-point numbers @@ -61,7 +61,7 @@ These functions will fail if: \fBRange Error\fR .ad .RS 15n -.rt +.rt The result overflows. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -85,15 +85,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/feclearexcept.3m b/usr/src/man/man3m/feclearexcept.3m index 542bc4213b..aaf52cad89 100644 --- a/usr/src/man/man3m/feclearexcept.3m +++ b/usr/src/man/man3m/feclearexcept.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH feclearexcept 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH FECLEAREXCEPT 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME feclearexcept \- clear floating-point exception .SH SYNOPSIS @@ -43,15 +43,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/fegetenv.3m b/usr/src/man/man3m/fegetenv.3m index 69739db5a1..af177e33e1 100644 --- a/usr/src/man/man3m/fegetenv.3m +++ b/usr/src/man/man3m/fegetenv.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH fegetenv 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH FEGETENV 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME fegetenv, fesetenv \- get and set current floating-point environment .SH SYNOPSIS @@ -60,15 +60,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/fegetexceptflag.3m b/usr/src/man/man3m/fegetexceptflag.3m index 67539dd0c1..e024f83dfe 100644 --- a/usr/src/man/man3m/fegetexceptflag.3m +++ b/usr/src/man/man3m/fegetexceptflag.3m @@ -1,13 +1,13 @@ '\" te .\" Copyright (c) 2001, The IEEE and The Open Group. All Rights Reserved. Portions Copyright (c) 2002, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH fegetexceptflag 3M "1 Sep 2002" "SunOS 5.11" "Mathematical Library Functions" +.TH FEGETEXCEPTFLAG 3M "Sep 1, 2002" "SunOS 5.11" "Mathematical Library Functions" .SH NAME fegetexceptflag, fesetexceptflag \- get and set floating-point status flags .SH SYNOPSIS @@ -62,15 +62,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/fegetround.3m b/usr/src/man/man3m/fegetround.3m index cebfd292a5..381bfb039f 100644 --- a/usr/src/man/man3m/fegetround.3m +++ b/usr/src/man/man3m/fegetround.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH fegetround 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH FEGETROUND 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME fegetround, fesetround \- get and set current rounding direction .SH SYNOPSIS @@ -84,15 +84,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/feholdexcept.3m b/usr/src/man/man3m/feholdexcept.3m index 6da946efc9..cf0b3a32b1 100644 --- a/usr/src/man/man3m/feholdexcept.3m +++ b/usr/src/man/man3m/feholdexcept.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH feholdexcept 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH FEHOLDEXCEPT 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME feholdexcept \- save current floating-point environment .SH SYNOPSIS @@ -44,15 +44,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/feraiseexcept.3m b/usr/src/man/man3m/feraiseexcept.3m index faa4c22a24..4173b9661d 100644 --- a/usr/src/man/man3m/feraiseexcept.3m +++ b/usr/src/man/man3m/feraiseexcept.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH feraiseexcept 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH FERAISEEXCEPT 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME feraiseexcept \- raise floating-point exception .SH SYNOPSIS @@ -50,15 +50,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/fesetprec.3m b/usr/src/man/man3m/fesetprec.3m index 41d61fb211..7565241fa1 100644 --- a/usr/src/man/man3m/fesetprec.3m +++ b/usr/src/man/man3m/fesetprec.3m @@ -3,14 +3,14 @@ .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH fesetprec 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH FESETPREC 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME fesetprec, fegetprec \- control floating point rounding precision modes .SH SYNOPSIS .LP .nf c99 [ \fIflag\fR... ] \fIfile\fR... -lm [ \fIlibrary\fR... ] -#include <fenv.h> +#include <fenv.h> \fBint\fR \fBfesetprec\fR(\fBint\fR \fIprec\fR); .fi @@ -40,7 +40,7 @@ defined in <\fBfenv.h\fR>: \fB\fBFE_FLTPREC\fR\fR .ad .RS 15n -.rt +.rt round to single precision .RE @@ -51,7 +51,7 @@ round to single precision \fB\fBFE_DBLPREC\fR\fR .ad .RS 15n -.rt +.rt round to double precision .RE @@ -62,7 +62,7 @@ round to double precision \fB\fBFE_LDBLPREC\fR\fR .ad .RS 15n -.rt +.rt round to extended double precision .RE @@ -85,15 +85,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -lw(2.75i) lw(2.75i) -lw(2.75i) lw(2.75i) +tab( ) box; +lw(2.75i) lw(2.75i) +lw(2.75i) lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE -ArchitectureIntel (see below) -AvailabilitySUNWlibms -Interface StabilityStable -MT-LevelMT-Safe +ATTRIBUTE TYPE ATTRIBUTE VALUE +Architecture Intel (see below) +Availability SUNWlibms +Interface Stability Stable +MT-Level MT-Safe .TE .sp diff --git a/usr/src/man/man3m/fetestexcept.3m b/usr/src/man/man3m/fetestexcept.3m index ada49b7fb1..b75f68e2c8 100644 --- a/usr/src/man/man3m/fetestexcept.3m +++ b/usr/src/man/man3m/fetestexcept.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH fetestexcept 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH FETESTEXCEPT 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME fetestexcept \- test floating-point exception flags .SH SYNOPSIS @@ -51,7 +51,7 @@ and then function \fIg\fR( ) if an overflow exception is set: /* ... */ { # pragma STDC FENV_ACCESS ON - int set_excepts; + int set_excepts; feclearexcept(FE_INVALID | FE_OVERFLOW); // maybe raise exceptions set_excepts = fetestexcept(FE_INVALID | FE_OVERFLOW); @@ -70,15 +70,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/feupdateenv.3m b/usr/src/man/man3m/feupdateenv.3m index 4fec2126e8..71cd97ac16 100644 --- a/usr/src/man/man3m/feupdateenv.3m +++ b/usr/src/man/man3m/feupdateenv.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH feupdateenv 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH FEUPDATEENV 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME feupdateenv \- update floating-point environment .SH SYNOPSIS @@ -72,15 +72,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/fex_merge_flags.3m b/usr/src/man/man3m/fex_merge_flags.3m index 607b0cccdc..b2bad1953e 100644 --- a/usr/src/man/man3m/fex_merge_flags.3m +++ b/usr/src/man/man3m/fex_merge_flags.3m @@ -3,14 +3,14 @@ .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH fex_merge_flags 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH FEX_MERGE_FLAGS 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME fex_merge_flags \- manage the floating point environment .SH SYNOPSIS .LP .nf c99 [ \fIflag\fR... ] \fIfile\fR... -lm [ \fIlibrary\fR... ] -#include <fenv.h> +#include <fenv.h> \fBvoid\fR \fBfex_merge_flags\fR(\fBconst fenv_t *\fR\fIenvp\fR); .fi @@ -36,14 +36,14 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -lw(2.75i) lw(2.75i) -lw(2.75i) lw(2.75i) +tab( ) box; +lw(2.75i) lw(2.75i) +lw(2.75i) lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE -AvailabilitySUNWlibms, SUNWlmsx -Interface StabilityStable -MT-LevelMT-Safe +ATTRIBUTE TYPE ATTRIBUTE VALUE +Availability SUNWlibms, SUNWlmsx +Interface Stability Stable +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/fex_set_handling.3m b/usr/src/man/man3m/fex_set_handling.3m index 72d6d06ceb..ba74f0f159 100644 --- a/usr/src/man/man3m/fex_set_handling.3m +++ b/usr/src/man/man3m/fex_set_handling.3m @@ -3,7 +3,7 @@ .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH fex_set_handling 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH FEX_SET_HANDLING 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME fex_set_handling, fex_get_handling, fex_getexcepthandler, fex_setexcepthandler \- control floating point exception handling modes @@ -11,7 +11,7 @@ fex_set_handling, fex_get_handling, fex_getexcepthandler, fex_setexcepthandler .LP .nf c99 [ \fIflag\fR... ] \fIfile\fR... -lm [ \fIlibrary\fR... ] -#include <fenv.h> +#include <fenv.h> \fBint\fR \fBfex_set_handling\fR(\fBint\fR \fIex\fR, \fBint\fR \fImode\fR, \fBvoid(*\fR\fIhandler\fR); .fi @@ -44,7 +44,7 @@ by a bitwise-OR of any of the following values defined in <\fBfenv.h\fR>: \fB\fBFEX_INEXACT\fR\fR .ad .RS 17n -.rt +.rt .RE @@ -55,7 +55,7 @@ by a bitwise-OR of any of the following values defined in <\fBfenv.h\fR>: \fB\fBFEX_UNDERFLOW\fR\fR .ad .RS 17n -.rt +.rt .RE @@ -66,7 +66,7 @@ by a bitwise-OR of any of the following values defined in <\fBfenv.h\fR>: \fB\fBFEX_OVERFLOW\fR\fR .ad .RS 17n -.rt +.rt .RE @@ -77,7 +77,7 @@ by a bitwise-OR of any of the following values defined in <\fBfenv.h\fR>: \fB\fBFEX_DIVBYZERO\fR\fR .ad .RS 17n -.rt +.rt division by zero .RE @@ -88,7 +88,7 @@ division by zero \fB\fBFEX_INV_ZDZ\fR\fR .ad .RS 17n -.rt +.rt 0/0 invalid operation .RE @@ -99,7 +99,7 @@ division by zero \fB\fBFEX_INV_IDI\fR\fR .ad .RS 17n -.rt +.rt infinity/infinity invalid operation .RE @@ -110,7 +110,7 @@ infinity/infinity invalid operation \fB\fBFEX_INV_ISI\fR\fR .ad .RS 17n -.rt +.rt infinity-infinity invalid operation .RE @@ -121,7 +121,7 @@ infinity-infinity invalid operation \fB\fBFEX_INV_ZMI\fR\fR .ad .RS 17n -.rt +.rt 0*infinity invalid operation .RE @@ -132,7 +132,7 @@ infinity-infinity invalid operation \fB\fBFEX_INV_SQRT\fR\fR .ad .RS 17n -.rt +.rt square root of negative operand .RE @@ -143,7 +143,7 @@ square root of negative operand \fB\fBFEX_INV_SNAN\fR\fR .ad .RS 17n -.rt +.rt signaling NaN .RE @@ -154,7 +154,7 @@ signaling NaN \fB\fBFEX_INV_INT\fR\fR .ad .RS 17n -.rt +.rt invalid integer conversion .RE @@ -165,7 +165,7 @@ invalid integer conversion \fB\fBFEX_INV_CMP\fR\fR .ad .RS 17n -.rt +.rt invalid comparison .RE @@ -179,7 +179,7 @@ For convenience, the following combinations of values are also defined: \fB\fBFEX_NONE\fR\fR .ad .RS 15n -.rt +.rt no exceptions .RE @@ -190,7 +190,7 @@ no exceptions \fB\fBFEX_INVALID\fR\fR .ad .RS 15n -.rt +.rt all invalid operation exceptions .RE @@ -201,7 +201,7 @@ all invalid operation exceptions \fB\fBFEX_COMMON\fR\fR .ad .RS 15n -.rt +.rt overflow, division by zero, and invalid operation .RE @@ -212,7 +212,7 @@ overflow, division by zero, and invalid operation \fB\fBFEX_ALL\fR\fR .ad .RS 15n -.rt +.rt all exceptions .RE @@ -229,7 +229,7 @@ exceptions occurs. It must be one of the following values: \fB\fBFEX_NOHANDLER\fR\fR .ad .RS 17n -.rt +.rt Trap but do not otherwise handle the exception, evoking instead whatever ambient behavior would normally be in effect. This is the default behavior when the exception's trap is enabled. The \fIhandler\fR parameter is ignored. @@ -242,7 +242,7 @@ when the exception's trap is enabled. The \fIhandler\fR parameter is ignored. \fB\fBFEX_NONSTOP\fR\fR .ad .RS 17n -.rt +.rt Provide the IEEE 754 default result for the operation that caused the exception, set the exception's flag, and continue execution. This is the default behavior when the exception's trap is disabled. The \fIhandler\fR @@ -256,7 +256,7 @@ parameter is ignored. \fB\fBFEX_ABORT\fR\fR .ad .RS 17n -.rt +.rt Call \fBabort\fR(3C). The \fIhandler\fR parameter is ignored. .RE @@ -267,7 +267,7 @@ Call \fBabort\fR(3C). The \fIhandler\fR parameter is ignored. \fB\fBFEX_SIGNAL\fR\fR .ad .RS 17n -.rt +.rt Invoke the function *\fIhandler\fR with the parameters normally supplied to a signal handler installed with \fBsigfpe\fR(3C). .RE @@ -279,7 +279,7 @@ signal handler installed with \fBsigfpe\fR(3C). \fB\fBFEX_CUSTOM\fR\fR .ad .RS 17n -.rt +.rt Invoke the function *\fIhandler\fR as described in the next paragraph. .RE @@ -378,7 +378,7 @@ int main() { * save current 0/0 handler */ (void) fex_getexcepthandler(&buf, FEX_INV_ZDZ); -/* +/* * set up presubstitution handler for 0/0 */ (void) fex_set_handling(FEX_INV_ZDZ, FEX_CUSTOM, presub); @@ -393,7 +393,7 @@ int main() { (void) printf("\etx=%3.3f\et f(x) = % 1.20e\en", x, w); } /* - * restore old 0/0 handler + * restore old 0/0 handler */ (void) fex_setexcepthandler(&buf, FEX_INV_ZDZ); return 0; @@ -431,14 +431,14 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -lw(2.75i) lw(2.75i) -lw(2.75i) lw(2.75i) +tab( ) box; +lw(2.75i) lw(2.75i) +lw(2.75i) lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE -AvailabilitySUNWlibms, SUNWlmxs -Interface StabilityStable -MT-LevelMT-Safe (see Notes) +ATTRIBUTE TYPE ATTRIBUTE VALUE +Availability SUNWlibms, SUNWlmxs +Interface Stability Stable +MT-Level MT-Safe (see Notes) .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/fex_set_log.3m b/usr/src/man/man3m/fex_set_log.3m index 051b0e5021..13f774228f 100644 --- a/usr/src/man/man3m/fex_set_log.3m +++ b/usr/src/man/man3m/fex_set_log.3m @@ -3,7 +3,7 @@ .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH fex_set_log 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH FEX_SET_LOG 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME fex_set_log, fex_get_log, fex_set_log_depth, fex_get_log_depth, fex_log_entry \- log retrospective diagnostics for floating point exceptions @@ -11,7 +11,7 @@ fex_set_log, fex_get_log, fex_set_log_depth, fex_get_log_depth, fex_log_entry .LP .nf c99 [ \fIflag\fR... ] \fIfile\fR... -lm [ \fIlibrary\fR... ] -#include <fenv.h> +#include <fenv.h> \fBint\fR \fBfex_set_log\fR(\fBFILE *\fR\fIfp\fR); .fi @@ -125,7 +125,7 @@ main() { * establish default handling for overflows */ (void) fex_set_handling(FEX_OVERFLOW, FEX_NONSTOP, NULL); -/* +/* * trigger an overflow in sscanf */ (void) sscanf("1.0e+400", "%lf", &x); @@ -163,14 +163,14 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -lw(2.75i) lw(2.75i) -lw(2.75i) lw(2.75i) +tab( ) box; +lw(2.75i) lw(2.75i) +lw(2.75i) lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE -AvailabilitySUNWlibms, SUNWlmxs -Interface StabilityStable -MT-LevelMT-Safe (see NOTES) +ATTRIBUTE TYPE ATTRIBUTE VALUE +Availability SUNWlibms, SUNWlmxs +Interface Stability Stable +MT-Level MT-Safe (see NOTES) .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/floor.3m b/usr/src/man/man3m/floor.3m index ddc993f041..bd0c4eea9b 100644 --- a/usr/src/man/man3m/floor.3m +++ b/usr/src/man/man3m/floor.3m @@ -2,14 +2,14 @@ .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH floor 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH FLOOR 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME floor, floorf, floorl \- floor function .SH SYNOPSIS @@ -55,15 +55,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/fma.3m b/usr/src/man/man3m/fma.3m index b79dae8df9..fe77c76c22 100644 --- a/usr/src/man/man3m/fma.3m +++ b/usr/src/man/man3m/fma.3m @@ -1,13 +1,13 @@ '\" te .\" Copyright (c) 2001, the Institute of ElectricalPortions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH fma 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH FMA 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME fma, fmaf, fmal \- floating-point multiply-add .SH SYNOPSIS @@ -68,7 +68,7 @@ These functions will fail if: \fBDomain Error\fR .ad .RS 16n -.rt +.rt The value of \fIx\fR*\fIy\fR+\fIz\fR is invalid or the value \fIx\fR*\fIy\fR is invalid. .sp @@ -83,7 +83,7 @@ non-zero, the invalid floating-point exception will be raised. \fBRange Error\fR .ad .RS 16n -.rt +.rt The result overflows. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -107,15 +107,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/fmax.3m b/usr/src/man/man3m/fmax.3m index c2cee612c6..25ded97ec2 100644 --- a/usr/src/man/man3m/fmax.3m +++ b/usr/src/man/man3m/fmax.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH fmax 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH FMAX 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME fmax, fmaxf, fmaxl \- determine maximum numeric value of two floating-point numbers @@ -60,15 +60,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/fmin.3m b/usr/src/man/man3m/fmin.3m index 826834fd04..5214eb4799 100644 --- a/usr/src/man/man3m/fmin.3m +++ b/usr/src/man/man3m/fmin.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH fmin 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH FMIN 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME fmin, fminf, fminl \- determine minimum numeric value of two floating-point numbers @@ -60,15 +60,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/fmod.3m b/usr/src/man/man3m/fmod.3m index 967b1ccbab..ae33ccc615 100644 --- a/usr/src/man/man3m/fmod.3m +++ b/usr/src/man/man3m/fmod.3m @@ -2,14 +2,14 @@ .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH fmod 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH FMOD 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME fmod, fmodf, fmodl \- floating-point remainder value function .SH SYNOPSIS @@ -68,7 +68,7 @@ These functions will fail if: \fBDomain Error\fR .ad .RS 16n -.rt +.rt The \fIx\fR argument is infinite or \fIy\fR is 0. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -92,15 +92,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/fpclassify.3m b/usr/src/man/man3m/fpclassify.3m index e02c50f28e..a4744cd792 100644 --- a/usr/src/man/man3m/fpclassify.3m +++ b/usr/src/man/man3m/fpclassify.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH fpclassify 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH FPCLASSIFY 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME fpclassify \- classify real floating type .SH SYNOPSIS @@ -44,15 +44,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/frexp.3m b/usr/src/man/man3m/frexp.3m index b419f55ac5..a41d472c61 100644 --- a/usr/src/man/man3m/frexp.3m +++ b/usr/src/man/man3m/frexp.3m @@ -3,14 +3,14 @@ .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Copyright 1989 AT&T .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH frexp 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH FREXP 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME frexp, frexpf, frexpl \- extract mantissa and exponent from a floating-point number @@ -64,15 +64,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/hypot.3m b/usr/src/man/man3m/hypot.3m index f09d9cd1b2..8571f92540 100644 --- a/usr/src/man/man3m/hypot.3m +++ b/usr/src/man/man3m/hypot.3m @@ -2,14 +2,14 @@ .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH hypot 3M "1 Sep 2002" "SunOS 5.11" "Mathematical Library Functions" +.TH HYPOT 3M "Sep 1, 2002" "SunOS 5.11" "Mathematical Library Functions" .SH NAME hypot, hypotf, hypotl \- Euclidean distance function .SH SYNOPSIS @@ -64,7 +64,7 @@ These functions will fail if: \fBRange Error\fR .ad .RS 15n -.rt +.rt The result overflows. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -99,15 +99,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/ilogb.3m b/usr/src/man/man3m/ilogb.3m index 1bfeb88446..a77fb7ce54 100644 --- a/usr/src/man/man3m/ilogb.3m +++ b/usr/src/man/man3m/ilogb.3m @@ -2,14 +2,14 @@ .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH ilogb 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH ILOGB 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME ilogb, ilogbf, ilogbl \- return an unbiased exponent .SH SYNOPSIS @@ -89,7 +89,7 @@ These functions will fail if: \fBDomain Error\fR .ad .RS 16n -.rt +.rt The \fIx\fR argument is zero, NaN, or \(+-Inf. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -104,15 +104,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/isfinite.3m b/usr/src/man/man3m/isfinite.3m index 23cfcc2347..e78b38180e 100644 --- a/usr/src/man/man3m/isfinite.3m +++ b/usr/src/man/man3m/isfinite.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH isfinite 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH ISFINITE 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME isfinite \- test for finite value .SH SYNOPSIS @@ -44,15 +44,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/isgreater.3m b/usr/src/man/man3m/isgreater.3m index ec5e4bda96..6ffa304c50 100644 --- a/usr/src/man/man3m/isgreater.3m +++ b/usr/src/man/man3m/isgreater.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH isgreater 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH ISGREATER 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME isgreater \- test if x greater than y .SH SYNOPSIS @@ -61,15 +61,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/isgreaterequal.3m b/usr/src/man/man3m/isgreaterequal.3m index 9b059f68e8..4ae9e6fbfa 100644 --- a/usr/src/man/man3m/isgreaterequal.3m +++ b/usr/src/man/man3m/isgreaterequal.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH isgreaterequal 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH ISGREATEREQUAL 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME isgreaterequal \- test if x greater than or equal to y .SH SYNOPSIS @@ -62,15 +62,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/isinf.3m b/usr/src/man/man3m/isinf.3m index 67496a184e..208b316671 100644 --- a/usr/src/man/man3m/isinf.3m +++ b/usr/src/man/man3m/isinf.3m @@ -9,7 +9,7 @@ .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH isinf 3M "17 Nov 2008" "SunOS 5.11" "Mathematical Library Functions" +.TH ISINF 3M "Nov 17, 2008" "SunOS 5.11" "Mathematical Library Functions" .SH NAME isinf \- test for infinity .SH SYNOPSIS @@ -45,15 +45,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/isless.3m b/usr/src/man/man3m/isless.3m index 1d1fb93035..9f5cae1631 100644 --- a/usr/src/man/man3m/isless.3m +++ b/usr/src/man/man3m/isless.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH isless 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH ISLESS 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME isless \- test if x is less than y .SH SYNOPSIS @@ -61,15 +61,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/islessequal.3m b/usr/src/man/man3m/islessequal.3m index c47897190e..20bbd849b5 100644 --- a/usr/src/man/man3m/islessequal.3m +++ b/usr/src/man/man3m/islessequal.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH islessequal 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH ISLESSEQUAL 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME islessequal \- test if x is less than or equal to y .SH SYNOPSIS @@ -61,15 +61,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/islessgreater.3m b/usr/src/man/man3m/islessgreater.3m index d8b43e2416..f6a76366cf 100644 --- a/usr/src/man/man3m/islessgreater.3m +++ b/usr/src/man/man3m/islessgreater.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH islessgreater 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH ISLESSGREATER 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME islessgreater \- test if x is less than or greater than y .SH SYNOPSIS @@ -62,15 +62,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/isnan.3m b/usr/src/man/man3m/isnan.3m index b5747b30e5..09f6097438 100644 --- a/usr/src/man/man3m/isnan.3m +++ b/usr/src/man/man3m/isnan.3m @@ -2,14 +2,14 @@ .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH isnan 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH ISNAN 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME isnan \- test for NaN .SH SYNOPSIS @@ -71,15 +71,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/isnormal.3m b/usr/src/man/man3m/isnormal.3m index f85c2f9280..303ecf28ae 100644 --- a/usr/src/man/man3m/isnormal.3m +++ b/usr/src/man/man3m/isnormal.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH isnormal 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH ISNORMAL 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME isnormal \- test for a normal value .SH SYNOPSIS @@ -44,15 +44,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/isunordered.3m b/usr/src/man/man3m/isunordered.3m index ff6d909c7c..d818f44977 100644 --- a/usr/src/man/man3m/isunordered.3m +++ b/usr/src/man/man3m/isunordered.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH isunordered 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH ISUNORDERED 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME isunordered \- test if arguments are unordered .SH SYNOPSIS @@ -54,15 +54,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/j0.3m b/usr/src/man/man3m/j0.3m index 89ed44afd5..6b4de4abad 100644 --- a/usr/src/man/man3m/j0.3m +++ b/usr/src/man/man3m/j0.3m @@ -2,14 +2,14 @@ .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH j0 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH J0 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME j0, j0f, j0l, j1, j1f, j1l, jn, jnf, jnl \- Bessel functions of the first kind .SH SYNOPSIS @@ -86,15 +86,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilitySee below. +Interface Stability See below. _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .sp diff --git a/usr/src/man/man3m/ldexp.3m b/usr/src/man/man3m/ldexp.3m index 1839f0fe15..fb4de4859b 100644 --- a/usr/src/man/man3m/ldexp.3m +++ b/usr/src/man/man3m/ldexp.3m @@ -2,14 +2,14 @@ .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH ldexp 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH LDEXP 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME ldexp, ldexpf, ldexpl \- load exponent of a floating point number .SH SYNOPSIS @@ -66,7 +66,7 @@ These functions will fail if: \fBRange Error\fR .ad .RS 15n -.rt +.rt The result overflows. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -98,15 +98,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/lgamma.3m b/usr/src/man/man3m/lgamma.3m index 745bb00313..0693db403c 100644 --- a/usr/src/man/man3m/lgamma.3m +++ b/usr/src/man/man3m/lgamma.3m @@ -8,11 +8,11 @@ .\" specifies the terms and conditions for redistribution. .\" Portions Copyright (c) 2006, Sun Microsystems, .\" Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. -.TH lgamma 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH LGAMMA 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME lgamma, lgammaf, lgammal, lgamma_r, lgammaf_r, lgammal_r, gamma, gammaf, gammal, gamma_r, gammaf_r, gammal_r \- log gamma function @@ -135,7 +135,7 @@ These functions will fail if: \fBPole Error\fR .ad .RS 14n -.rt +.rt The \fIx\fR argument is a negative integer or 0. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -177,15 +177,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilitySee below. +Interface Stability See below. _ -MT-LevelSee below. +MT-Level See below. .TE .sp diff --git a/usr/src/man/man3m/llrint.3m b/usr/src/man/man3m/llrint.3m index 4ef3e361ab..89b5d37961 100644 --- a/usr/src/man/man3m/llrint.3m +++ b/usr/src/man/man3m/llrint.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH llrint 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH LLRINT 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME llrint, llrintf, llrintl \- round to nearest integer value using current rounding direction @@ -68,7 +68,7 @@ These functions will fail if: \fBDomain Error\fR .ad .RS 16n -.rt +.rt The \fIx\fR argument is NaN or \(+-Inf, or the correct value is not representable as an integer. .sp @@ -101,15 +101,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/llround.3m b/usr/src/man/man3m/llround.3m index c2d2cd7ce7..f39366ebec 100644 --- a/usr/src/man/man3m/llround.3m +++ b/usr/src/man/man3m/llround.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH llround 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH LLROUND 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME llround, llroundf, llroundl \- round to nearest integer value .SH SYNOPSIS @@ -67,7 +67,7 @@ These functions will fail if: \fBDomain Error\fR .ad .RS 16n -.rt +.rt The \fIx\fR argument is NaN or \(+-Inf, or the correct value is not representable as an integer. .sp @@ -98,15 +98,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/log.3m b/usr/src/man/man3m/log.3m index b126a266aa..0ac05db593 100644 --- a/usr/src/man/man3m/log.3m +++ b/usr/src/man/man3m/log.3m @@ -2,14 +2,14 @@ .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH log 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH LOG 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME log, logf, logl \- natural logarithm function .SH SYNOPSIS @@ -74,7 +74,7 @@ These functions will fail if: \fBDomain Error\fR .ad .RS 16n -.rt +.rt The finite value of \fIx\fR is negative, or \fIx\fR is -Inf. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -91,7 +91,7 @@ is negative. \fBPole Error\fR .ad .RS 16n -.rt +.rt The value of \fIx\fR is 0. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -120,15 +120,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/log10.3m b/usr/src/man/man3m/log10.3m index d59a472d58..8f097ed83a 100644 --- a/usr/src/man/man3m/log10.3m +++ b/usr/src/man/man3m/log10.3m @@ -2,14 +2,14 @@ .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH log10 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH LOG10 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME log10, log10f, log10l \- base 10 logarithm function .SH SYNOPSIS @@ -73,7 +73,7 @@ These functions will fail if: \fBDomain Error\fR .ad .RS 16n -.rt +.rt The finite value of \fIx\fR is negative, or \fIx\fR is -Inf. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -90,7 +90,7 @@ The \fBlog10()\fR function sets \fBerrno\fR to \fBEDOM\fR if the value of \fBPole Error\fR .ad .RS 16n -.rt +.rt The value of \fIx\fR is 0. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -119,15 +119,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/log1p.3m b/usr/src/man/man3m/log1p.3m index f7d7ba2746..b753c1bbc6 100644 --- a/usr/src/man/man3m/log1p.3m +++ b/usr/src/man/man3m/log1p.3m @@ -2,14 +2,14 @@ .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH log1p 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH LOG1P 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME log1p, log1pf, log1pl \- compute natural logarithm .SH SYNOPSIS @@ -70,7 +70,7 @@ These functions will fail if: \fBDomain Error\fR .ad .RS 16n -.rt +.rt The finite value of \fIx\fR is less than \(mi1, or \fIx\fR is -Inf. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -87,7 +87,7 @@ The \fBlog1p()\fR function sets \fBerrno\fR to \fBEDOM\fR if the value of \fBPole Error\fR .ad .RS 16n -.rt +.rt The value of \fIx\fR is \(mi1. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -116,15 +116,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/log2.3m b/usr/src/man/man3m/log2.3m index d7c4af3c95..d9759dfeca 100644 --- a/usr/src/man/man3m/log2.3m +++ b/usr/src/man/man3m/log2.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH log2 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH LOG2 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME log2, log2f, log2l \- compute base 2 logarithm functions .SH SYNOPSIS @@ -69,7 +69,7 @@ These functions will fail if: \fBDomain Error\fR .ad .RS 16n -.rt +.rt The finite value of \fIx\fR is less than 0, or \fIx\fR is \(miInf. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -83,7 +83,7 @@ non-zero, then the invalid floating-point exception is raised. \fBPole Error\fR .ad .RS 16n -.rt +.rt The value of \fIx\fR is 0. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -107,15 +107,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/logb.3m b/usr/src/man/man3m/logb.3m index f2e22cb152..db3fd7f6ed 100644 --- a/usr/src/man/man3m/logb.3m +++ b/usr/src/man/man3m/logb.3m @@ -2,14 +2,14 @@ .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH logb 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH LOGB 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME logb, logbf, logbl \- radix-independent exponent .SH SYNOPSIS @@ -101,7 +101,7 @@ These functions will fail if: \fBPole Error\fR .ad .RS 14n -.rt +.rt The value of \fIx\fR is \(+-0. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -133,15 +133,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/lrint.3m b/usr/src/man/man3m/lrint.3m index 170a2c8f87..4e9a162e75 100644 --- a/usr/src/man/man3m/lrint.3m +++ b/usr/src/man/man3m/lrint.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH lrint 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH LRINT 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME lrint, lrintf, lrintl \- round to nearest integer value using current rounding direction @@ -69,7 +69,7 @@ These functions will fail if: \fBDomain Error\fR .ad .RS 16n -.rt +.rt The \fIx\fR argument is NaN or \(+-Inf, or the correct value is not representable as an integer. .sp @@ -94,15 +94,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/lround.3m b/usr/src/man/man3m/lround.3m index 4b85ce2362..8ef1119d6e 100644 --- a/usr/src/man/man3m/lround.3m +++ b/usr/src/man/man3m/lround.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH lround 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH LROUND 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME lround, lroundf, lroundl \- round to nearest integer value .SH SYNOPSIS @@ -68,7 +68,7 @@ These functions will fail if: \fBDomain Error\fR .ad .RS 16n -.rt +.rt The \fIx\fR argument is NaN or \(+-Inf, or the correct value is not representable as an integer. .sp @@ -93,15 +93,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/matherr.3m b/usr/src/man/man3m/matherr.3m index 4acdb98e7d..07985f8232 100644 --- a/usr/src/man/man3m/matherr.3m +++ b/usr/src/man/man3m/matherr.3m @@ -3,7 +3,7 @@ .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH matherr 3M "23 Sep 1997" "SunOS 5.11" "Mathematical Library Functions" +.TH MATHERR 3M "Sep 23, 1997" "SunOS 5.11" "Mathematical Library Functions" .SH NAME matherr \- math library exception-handling function .SH SYNOPSIS @@ -47,7 +47,7 @@ occurred, from the following list of constants (defined in the header file): \fB\fBDOMAIN\fR\fR .ad .RS 13n -.rt +.rt argument domain exception .RE @@ -58,7 +58,7 @@ argument domain exception \fB\fBSING\fR\fR .ad .RS 13n -.rt +.rt argument singularity .RE @@ -69,7 +69,7 @@ argument singularity \fB\fBOVERFLOW\fR\fR .ad .RS 13n -.rt +.rt overflow range exception .RE @@ -80,7 +80,7 @@ overflow range exception \fB\fBUNDERFLOW\fR\fR .ad .RS 13n -.rt +.rt underflow range exception .RE @@ -91,7 +91,7 @@ underflow range exception \fB\fBTLOSS\fR\fR .ad .RS 13n -.rt +.rt total loss of significance .RE @@ -102,7 +102,7 @@ total loss of significance \fB\fBPLOSS\fR\fR .ad .RS 13n -.rt +.rt partial loss of significance .RE @@ -138,7 +138,7 @@ are invoked upon exception: \fB\fBDOMAIN\fR\fR .ad .RS 13n -.rt +.rt 0.0 is usually returned, \fBerrno\fR is set to \fBEDOM\fR and a message is usually printed on standard error. .RE @@ -150,7 +150,7 @@ usually printed on standard error. \fB\fBSING\fR\fR .ad .RS 13n -.rt +.rt The largest finite single-precision number, \fBHUGE\fR of appropriate sign, is returned, \fBerrno\fR is set to \fBEDOM\fR, and a message is printed on standard error. @@ -163,7 +163,7 @@ standard error. \fB\fBOVERFLOW\fR\fR .ad .RS 13n -.rt +.rt The largest finite single-precision number, \fBHUGE\fR of appropriate sign, is usually returned and \fBerrno\fR is set to \fBERANGE\fR. .RE @@ -175,7 +175,7 @@ usually returned and \fBerrno\fR is set to \fBERANGE\fR. \fB\fBUNDERFLOW\fR\fR .ad .RS 13n -.rt +.rt 0.0 is returned and \fBerrno\fR is set to \fBERANGE\fR. .RE @@ -186,7 +186,7 @@ usually returned and \fBerrno\fR is set to \fBERANGE\fR. \fB\fBTLOSS\fR\fR .ad .RS 13n -.rt +.rt 0.0 is returned, \fBerrno\fR is set to \fBERANGE\fR, and a message is printed on standard error. .RE @@ -200,58 +200,58 @@ unexpectedly set by a function in a handler for an asynchronous signal. .sp .TS -tab() box; -cw(1.29i) |cw(.81i) |cw(.79i) |cw(.87i) |cw(1.03i) |cw(.71i) -lw(1.29i) |lw(.81i) |lw(.79i) |lw(.87i) |lw(1.03i) |lw(.71i) +tab( ) box; +cw(1.29i) |cw(.81i) |cw(.79i) |cw(.87i) |cw(1.03i) |cw(.71i) +lw(1.29i) |lw(.81i) |lw(.79i) |lw(.87i) |lw(1.03i) |lw(.71i) . -<math.h> typeDOMAINSINGOVERFLOWUNDERFLOWTLOSS +<math.h> type DOMAIN SING OVERFLOW UNDERFLOW TLOSS _ -\fBerrno\fREDOMEDOMERANGEERANGEERANGE +\fBerrno\fR EDOM EDOM ERANGE ERANGE ERANGE _ -IEEE ExceptionInvalid OperationDivision by ZeroOverflowUnderflow\(mi +IEEE Exception Invalid Operation Division by Zero Overflow Underflow \(mi _ -fp_exception_typefp_invalidfp_divisionfp_overflowfp_underflow\(mi +fp_exception_type fp_invalid fp_division fp_overflow fp_underflow \(mi _ -ACOS, ASIN\|(|x| > 1):Md, 0.0\(mi\(mi\(mi\(mi +ACOS, ASIN\|(|x| > 1): Md, 0.0 \(mi \(mi \(mi \(mi _ -ACOSH\|(x < 1), ATANH\|(|x| > 1):NaN\(mi\(mi\(mi\(mi +ACOSH\|(x < 1), ATANH\|(|x| > 1): NaN \(mi \(mi \(mi \(mi _ -ATAN2\|(0,0):Md, 0.0\(mi\(mi\(mi\(mi +ATAN2\|(0,0): Md, 0.0 \(mi \(mi \(mi \(mi _ -COSH, SINH:\(mi\(mi\(+-HUGE\(mi\(mi +COSH, SINH: \(mi \(mi \(+-HUGE \(mi \(mi _ -EXP:\(mi\(mi+HUGE0.0\(mi +EXP: \(mi \(mi +HUGE 0.0 \(mi _ -FMOD\|(x,0):x\(mi\(mi\(mi\(mi +FMOD\|(x,0): x \(mi \(mi \(mi \(mi _ -HYPOT:\(mi\(mi+HUGE\(mi\(mi +HYPOT: \(mi \(mi +HUGE \(mi \(mi _ -J0, J1, JN\|(|x| > X_TLOSS):\(mi\(mi\(mi\(miMt, 0.0 +J0, J1, JN\|(|x| > X_TLOSS): \(mi \(mi \(mi \(mi Mt, 0.0 _ -LGAMMA: - usual cases\(mi\(mi+HUGE\(mi\(mi - (x = 0 or \(miinteger) \(miMs, +HUGE\(mi\(mi\(mi +LGAMMA: + usual cases \(mi \(mi +HUGE \(mi \(mi + (x = 0 or \(miinteger) \(mi Ms, +HUGE \(mi \(mi \(mi _ -LOG, LOG10: - (x < 0)Md, \(miHUGE\(mi \(mi\(mi\(mi - (x = 0)\(miMs, \(miHUGE\(mi\(mi\(mi +LOG, LOG10: + (x < 0) Md, \(miHUGE \(mi \(mi \(mi \(mi + (x = 0) \(mi Ms, \(miHUGE \(mi \(mi \(mi _ -POW: - usual cases\(mi\(mi\(+-HUGE\(+-0.0\(mi - (x < 0) ** (y not an integer)Md, 0.0\(mi\(mi\(mi\(mi - 0 ** 0Md, 0.0\(mi\(mi\(mi\(mi - 0 ** (y < 0)Md, 0.0\(mi\(mi\(mi +POW: + usual cases \(mi \(mi \(+-HUGE \(+-0.0 \(mi + (x < 0) ** (y not an integer) Md, 0.0 \(mi \(mi \(mi \(mi + 0 ** 0 Md, 0.0 \(mi \(mi \(mi \(mi + 0 ** (y < 0) Md, 0.0 \(mi \(mi \(mi _ -REMAINDER\|(x,0):NaN\(mi\(mi\(mi\(mi +REMAINDER\|(x,0): NaN \(mi \(mi \(mi \(mi _ -SCALB:\(mi\(mi\(+-HUGE_VAL\(+-0.0\(mi +SCALB: \(mi \(mi \(+-HUGE_VAL \(+-0.0 \(mi _ -SQRT\|(x < 0):Md, 0.0\(mi\(mi\(mi\(mi +SQRT\|(x < 0): Md, 0.0 \(mi \(mi \(mi \(mi _ -Y0, Y1, YN: - (x < 0)Md, \(miHUGE\(mi\(mi\(mi\(mi - (x = 0)\(miMd, \(miHUGE\(mi\(mi\(mi - (x > X_TLOSS)\(mi\(mi\(mi\(miMt, 0.0 +Y0, Y1, YN: + (x < 0) Md, \(miHUGE \(mi \(mi \(mi \(mi + (x = 0) \(mi Md, \(miHUGE \(mi \(mi \(mi + (x > X_TLOSS) \(mi \(mi \(mi \(mi Mt, 0.0 .TE .SS "Abbreviations" @@ -262,7 +262,7 @@ Y0, Y1, YN: \fBMd\fR .ad .RS 12n -.rt +.rt Message is printed (DOMAIN error). .RE @@ -273,7 +273,7 @@ Message is printed (DOMAIN error). \fBMs\fR .ad .RS 12n -.rt +.rt Message is printed (SING error). .RE @@ -284,7 +284,7 @@ Message is printed (SING error). \fBMt\fR .ad .RS 12n -.rt +.rt Message is printed (TLOSS error). .RE @@ -295,7 +295,7 @@ Message is printed (TLOSS error). \fBNaN\fR .ad .RS 12n -.rt +.rt IEEE NaN result and invalid operation exception. .RE @@ -306,7 +306,7 @@ IEEE NaN result and invalid operation exception. \fBHUGE\fR .ad .RS 12n -.rt +.rt Maximum finite single-precision floating-point number. .RE @@ -317,7 +317,7 @@ Maximum finite single-precision floating-point number. \fBHUGE_VAL\fR .ad .RS 12n -.rt +.rt IEEE \(if result and division-by-zero exception. .RE @@ -328,7 +328,7 @@ IEEE \(if result and division-by-zero exception. \fBX_TLOSS\fR .ad .RS 12n -.rt +.rt The value X_TLOSS is defined in <values.h>. .RE @@ -351,48 +351,48 @@ NaN is returned. In particular, \fBpow(NaN,0)\fR = NaN. .sp .TS -tab() box; -cw(.82i) |cw(1.03i) |cw(1i) |cw(.97i) |cw(.96i) |cw(.72i) -lw(.82i) |lw(1.03i) |lw(1i) |lw(.97i) |lw(.96i) |lw(.72i) +tab( ) box; +cw(.82i) |cw(1.03i) |cw(1i) |cw(.97i) |cw(.96i) |cw(.72i) +lw(.82i) |lw(1.03i) |lw(1i) |lw(.97i) |lw(.96i) |lw(.72i) . -<math.h> typeDOMAINSINGOVERFLOWUNDERFLOWTLOSS +<math.h> type DOMAIN SING OVERFLOW UNDERFLOW TLOSS _ -\fBerrno\fREDOMEDOMERANGEERANGEERANGE +\fBerrno\fR EDOM EDOM ERANGE ERANGE ERANGE _ -ACOS, ASIN\|(|x| > 1):0.0\(mi\(mi\(mi\(mi +ACOS, ASIN\|(|x| > 1): 0.0 \(mi \(mi \(mi \(mi _ -ATAN2\|(0,0):0.0\(mi\(mi\(mi\(mi +ATAN2\|(0,0): 0.0 \(mi \(mi \(mi \(mi _ -COSH, SINH:\(mi\(mi{\(+-HUGE_VAL}\(mi\(mi +COSH, SINH: \(mi \(mi {\(+-HUGE_VAL} \(mi \(mi _ -EXP:\(mi\(mi{+HUGE_VAL}{0.0}\(mi +EXP: \(mi \(mi {+HUGE_VAL} {0.0} \(mi _ -FMOD\|(x,0):{NaN}\(mi\(mi\(mi\(mi +FMOD\|(x,0): {NaN} \(mi \(mi \(mi \(mi _ -HYPOT:\(mi\(mi{+HUGE_VAL}\(mi\(mi +HYPOT: \(mi \(mi {+HUGE_VAL} \(mi \(mi _ -J0, J1, JN\|(|x| > X_TLOSS):\(mi\(mi\(mi\(mi{0.0} +J0, J1, JN\|(|x| > X_TLOSS): \(mi \(mi \(mi \(mi {0.0} _ -LGAMMA: - usual cases\(mi\(mi{+HUGE_VAL}\(mi\(mi - (x = 0 or \(miinteger) \(mi+HUGE_VAL\(mi\(mi\(mi +LGAMMA: + usual cases \(mi \(mi {+HUGE_VAL} \(mi \(mi + (x = 0 or \(miinteger) \(mi +HUGE_VAL \(mi \(mi \(mi _ -LOG, LOG10: - (x < 0)\fB-HUGE_VAL\fR\(mi\(mi\(mi\(mi - (x = 0)\(mi\fB-HUGE_VAL\fR\(mi\(mi\(mi +LOG, LOG10: + (x < 0) \fB-HUGE_VAL\fR \(mi \(mi \(mi \(mi + (x = 0) \(mi \fB-HUGE_VAL\fR \(mi \(mi \(mi _ -POW: - usual cases\(mi\(mi\(+-HUGE_VAL\(+-0.0\(mi - (x < 0) ** (y not an integer)0.0\(mi\(mi\(mi\(mi - 0 ** 0{1.0}\(mi\(mi\(mi\(mi - 0 ** (y < 0){\fB-HUGE_VAL\fR}\(mi\(mi\(mi\(mi +POW: + usual cases \(mi \(mi \(+-HUGE_VAL \(+-0.0 \(mi + (x < 0) ** (y not an integer) 0.0 \(mi \(mi \(mi \(mi + 0 ** 0 {1.0} \(mi \(mi \(mi \(mi + 0 ** (y < 0) {\fB-HUGE_VAL\fR} \(mi \(mi \(mi \(mi _ -SQRT\|(x < 0):0.0\(mi\(mi\(mi\(mi +SQRT\|(x < 0): 0.0 \(mi \(mi \(mi \(mi _ -Y0, Y1, YN: - (x < 0){\fB-HUGE_VAL\fR}\(mi\(mi\(mi\(mi - (x = 0)\(mi{\fB-HUGE_VAL\fR}\(mi\(mi\(mi - (x > X_TLOSS)\(mi\(mi\(mi\(mi0.0 +Y0, Y1, YN: + (x < 0) {\fB-HUGE_VAL\fR} \(mi \(mi \(mi \(mi + (x = 0) \(mi {\fB-HUGE_VAL\fR} \(mi \(mi \(mi + (x > X_TLOSS) \(mi \(mi \(mi \(mi 0.0 .TE .SS "Abbreviations" @@ -403,7 +403,7 @@ Y0, Y1, YN: \fB{...}\fR .ad .RS 12n -.rt +.rt \fBerrno\fR is not to be relied upon in all braced cases. .RE @@ -414,7 +414,7 @@ Y0, Y1, YN: \fBNaN\fR .ad .RS 12n -.rt +.rt IEEE NaN result and invalid operation exception. .RE @@ -425,7 +425,7 @@ IEEE NaN result and invalid operation exception. \fBHUGE_VAL\fR .ad .RS 12n -.rt +.rt IEEE \(if result and division-by-zero exception. .RE @@ -436,7 +436,7 @@ IEEE \(if result and division-by-zero exception. \fBX_TLOSS\fR .ad .RS 12n -.rt +.rt The value X_TLOSS is defined in <\fBvalues.h\fR>. .RE @@ -452,32 +452,32 @@ The following table summarizes the values returned in the exceptional cases. .sp .TS -tab() box; -cw(1.1i) |cw(1.1i) |cw(1.1i) |cw(1.1i) |cw(1.11i) -lw(1.1i) |lw(1.1i) |lw(1.1i) |lw(1.1i) |lw(1.11i) +tab( ) box; +cw(1.1i) |cw(1.1i) |cw(1.1i) |cw(1.1i) |cw(1.11i) +lw(1.1i) |lw(1.1i) |lw(1.1i) |lw(1.1i) |lw(1.11i) . -<math.h> typeDOMAINSINGOVERFLOWUNDERFLOW +<math.h> type DOMAIN SING OVERFLOW UNDERFLOW _ -\fBerrno\fREDOMEDOMERANGEERANGE +\fBerrno\fR EDOM EDOM ERANGE ERANGE _ -ACOS, ASIN\|(|x| > 1):0.0\(mi\(mi\(mi +ACOS, ASIN\|(|x| > 1): 0.0 \(mi \(mi \(mi _ -ATAN2\|(0,0):0.0\(mi\(mi\(mi +ATAN2\|(0,0): 0.0 \(mi \(mi \(mi _ -EXP:\(mi\(mi+HUGE_VAL0.0 +EXP: \(mi \(mi +HUGE_VAL 0.0 _ -FMOD\|(x,0):NaN\(mi\(mi\(mi +FMOD\|(x,0): NaN \(mi \(mi \(mi _ -LOG, LOG10: - (x < 0)\fB-HUGE_VAL\fR\(mi\(mi\(mi - (x = 0)\(mi\fB-HUGE_VAL\fR\(mi\(mi +LOG, LOG10: + (x < 0) \fB-HUGE_VAL\fR \(mi \(mi \(mi + (x = 0) \(mi \fB-HUGE_VAL\fR \(mi \(mi _ -POW: - usual cases\(mi\(mi\(+-HUGE_VAL\(+-0.0 - (x < 0) ** (y not an integer)0.0\(mi\(mi\(mi - 0 ** (y < 0)\fB-HUGE_VAL\fR\(mi\(mi\(mi +POW: + usual cases \(mi \(mi \(+-HUGE_VAL \(+-0.0 + (x < 0) ** (y not an integer) 0.0 \(mi \(mi \(mi + 0 ** (y < 0) \fB-HUGE_VAL\fR \(mi \(mi \(mi _ -SQRT\|(x < 0):0.0\(mi\(mi\(mi +SQRT\|(x < 0): 0.0 \(mi \(mi \(mi .TE .SS "ABBREVIATIONS" @@ -488,7 +488,7 @@ SQRT\|(x < 0):0.0\(mi\(mi\(mi \fBNaN\fR .ad .RS 12n -.rt +.rt IEEE NaN result and invalid operation exception. .RE @@ -499,7 +499,7 @@ IEEE NaN result and invalid operation exception. \fBHUGE_VAL\fR .ad .RS 12n -.rt +.rt IEEE \(if result and division-by-zero. .RE @@ -542,13 +542,13 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/modf.3m b/usr/src/man/man3m/modf.3m index 7cb6c935a5..37e8d54023 100644 --- a/usr/src/man/man3m/modf.3m +++ b/usr/src/man/man3m/modf.3m @@ -2,14 +2,14 @@ .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH modf 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH MODF 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME modf, modff, modfl \- decompose floating-point number .SH SYNOPSIS @@ -74,15 +74,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/nan.3m b/usr/src/man/man3m/nan.3m index ee987b7256..21d7747564 100644 --- a/usr/src/man/man3m/nan.3m +++ b/usr/src/man/man3m/nan.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH nan 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH NAN 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME nan, nanf, nanl \- return quiet NaN .SH SYNOPSIS @@ -83,15 +83,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/nearbyint.3m b/usr/src/man/man3m/nearbyint.3m index 7b11612955..d2adaa6306 100644 --- a/usr/src/man/man3m/nearbyint.3m +++ b/usr/src/man/man3m/nearbyint.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH nearbyint 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH NEARBYINT 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME nearbyint, nearbyintf, nearbyintl \- floating-point rounding functions .SH SYNOPSIS @@ -57,15 +57,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/nextafter.3m b/usr/src/man/man3m/nextafter.3m index c054c4d3c3..98fcc23450 100644 --- a/usr/src/man/man3m/nextafter.3m +++ b/usr/src/man/man3m/nextafter.3m @@ -2,14 +2,14 @@ .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH nextafter 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH NEXTAFTER 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME nextafter, nextafterf, nextafterl, nexttoward, nexttowardf, nexttowardl \- next representable double-precision floating-point number @@ -95,7 +95,7 @@ These functions will fail if: \fBRange Error\fR .ad .RS 15n -.rt +.rt The correct value overflows. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -112,7 +112,7 @@ value would overflow. \fBRange Error\fR .ad .RS 15n -.rt +.rt The correct value underflows. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -142,15 +142,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/pow.3m b/usr/src/man/man3m/pow.3m index f33fb1387c..b60f9688d8 100644 --- a/usr/src/man/man3m/pow.3m +++ b/usr/src/man/man3m/pow.3m @@ -2,14 +2,14 @@ .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH pow 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH POW 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME pow, powf, powl \- power function .SH SYNOPSIS @@ -155,7 +155,7 @@ These functions will fail if: \fBDomain Error\fR .ad .RS 16n -.rt +.rt The value of \fIx\fR is negative and \fIy\fR is a finite non-integer. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -172,7 +172,7 @@ is negative and \fIy\fR is non-integral. \fBPole Error\fR .ad .RS 16n -.rt +.rt The value of \fIx\fR is 0 and \fIy\fR is negative. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -186,7 +186,7 @@ non-zero, the divide-by-zero floating-point exception is raised. \fBRange Error\fR .ad .RS 16n -.rt +.rt The result overflows. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -218,15 +218,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/remainder.3m b/usr/src/man/man3m/remainder.3m index 567ebd81a9..4262613e33 100644 --- a/usr/src/man/man3m/remainder.3m +++ b/usr/src/man/man3m/remainder.3m @@ -2,14 +2,14 @@ .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH remainder 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH REMAINDER 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME remainder, remainderf, remainderl \- remainder function .SH SYNOPSIS @@ -64,7 +64,7 @@ These functions will fail if: \fBDomain Error\fR .ad .RS 16n -.rt +.rt The \fIx\fR argument is \(+-Inf, or the \fIy\fR argument is \(+-0 and the other argument is non-NaN. .sp @@ -90,15 +90,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/remquo.3m b/usr/src/man/man3m/remquo.3m index cc2e10ee28..d269d03110 100644 --- a/usr/src/man/man3m/remquo.3m +++ b/usr/src/man/man3m/remquo.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH remquo 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH REMQUO 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME remquo, remquof, remquol \- remainder functions .SH SYNOPSIS @@ -62,7 +62,7 @@ These functions will fail if: \fBDomain Error\fR .ad .RS 16n -.rt +.rt The \fIx\fR argument is Inf or the \fIy\fR argument is 0 and the other argument is non-NaN. .sp @@ -87,15 +87,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/rint.3m b/usr/src/man/man3m/rint.3m index f21200513d..96d2225054 100644 --- a/usr/src/man/man3m/rint.3m +++ b/usr/src/man/man3m/rint.3m @@ -2,14 +2,14 @@ .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH rint 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH RINT 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME rint, rintf, rintl \- round-to-nearest integral value .SH SYNOPSIS @@ -66,15 +66,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/round.3m b/usr/src/man/man3m/round.3m index 8d2b246aa4..4d59150916 100644 --- a/usr/src/man/man3m/round.3m +++ b/usr/src/man/man3m/round.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH round 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH ROUND 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME round, roundf, roundl \- round to nearest integer value in floating-point format @@ -55,15 +55,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/scalb.3m b/usr/src/man/man3m/scalb.3m index f38893a5dc..48419e1264 100644 --- a/usr/src/man/man3m/scalb.3m +++ b/usr/src/man/man3m/scalb.3m @@ -2,14 +2,14 @@ .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH scalb 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH SCALB 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME scalb, scalbf, scalbl \- load exponent of a radix-independent floating-point number @@ -83,7 +83,7 @@ These functions will fail if: \fBDomain Error\fR .ad .RS 16n -.rt +.rt If \fIx\fR is 0 and \fIn\fR is +Inf, or \fIx\fR is Inf and \fIn\fR is \(miInf. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -97,7 +97,7 @@ non-zero, then the invalid floating-point exception is raised. \fBRange Error\fR .ad .RS 16n -.rt +.rt The result would overflow. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -121,15 +121,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilitySee below. +Interface Stability See below. _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .sp diff --git a/usr/src/man/man3m/scalbln.3m b/usr/src/man/man3m/scalbln.3m index a04b34abdd..ca8cf1aab7 100644 --- a/usr/src/man/man3m/scalbln.3m +++ b/usr/src/man/man3m/scalbln.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH scalbln 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH SCALBLN 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME scalbln, scalblnf, scalblnl, scalbn, scalbnf, scalbnl \- compute exponent using FLT_RADIX @@ -82,7 +82,7 @@ These functions will fail if: \fBRange Error\fR .ad .RS 15n -.rt +.rt The result overflows. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -106,15 +106,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/signbit.3m b/usr/src/man/man3m/signbit.3m index 4720eaf6c1..cb1a666959 100644 --- a/usr/src/man/man3m/signbit.3m +++ b/usr/src/man/man3m/signbit.3m @@ -2,14 +2,14 @@ .\" Copyright (c) 2001, The IEEE and The Open Group. All Rights Reserved. Portions Copyright (c) 2003, Sun Microsystems, Inc. All Rights Reserved. .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH signbit 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH SIGNBIT 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME signbit \- test sign .SH SYNOPSIS @@ -43,15 +43,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/significand.3m b/usr/src/man/man3m/significand.3m index 5cfb566589..f74e16ef56 100644 --- a/usr/src/man/man3m/significand.3m +++ b/usr/src/man/man3m/significand.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH significand 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH SIGNIFICAND 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME significand, significandf, significandl \- significand function .SH SYNOPSIS @@ -54,15 +54,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStable +Interface Stability Stable _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/sin.3m b/usr/src/man/man3m/sin.3m index 938a8da3e4..83b8df2c28 100644 --- a/usr/src/man/man3m/sin.3m +++ b/usr/src/man/man3m/sin.3m @@ -2,14 +2,14 @@ .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH sin 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH SIN 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME sin, sinf, sinl \- sine function .SH SYNOPSIS @@ -59,7 +59,7 @@ These functions will fail if: \fBDomain Error\fR .ad .RS 16n -.rt +.rt The \fIx\fR argument is \(+-Inf. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -83,15 +83,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/sincos.3m b/usr/src/man/man3m/sincos.3m index 00ad44b957..c177ea54e8 100644 --- a/usr/src/man/man3m/sincos.3m +++ b/usr/src/man/man3m/sincos.3m @@ -3,7 +3,7 @@ .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH sincos 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH SINCOS 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME sincos, sincosf, sincosl \- combined sine and cosine function .SH SYNOPSIS @@ -43,15 +43,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStable +Interface Stability Stable _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/sinh.3m b/usr/src/man/man3m/sinh.3m index fb63ffc2c4..2dda890c94 100644 --- a/usr/src/man/man3m/sinh.3m +++ b/usr/src/man/man3m/sinh.3m @@ -2,14 +2,14 @@ .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH sinh 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH SINH 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME sinh, sinhf, sinhl \- hyperbolic sine function .SH SYNOPSIS @@ -66,7 +66,7 @@ These functions will fail if: \fBRange Error\fR .ad .RS 15n -.rt +.rt The result would cause an overflow. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -98,15 +98,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/sqrt.3m b/usr/src/man/man3m/sqrt.3m index 0bdea2d4e1..4e33df534b 100644 --- a/usr/src/man/man3m/sqrt.3m +++ b/usr/src/man/man3m/sqrt.3m @@ -3,11 +3,11 @@ .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Copyright (c) 1985 Regents of the University of California. All rights reserved. The Berkeley software License Agreement specifies the terms and conditions for redistribution. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. -.TH sqrt 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH SQRT 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME sqrt, sqrtf, sqrtl \- square root function .SH SYNOPSIS @@ -61,7 +61,7 @@ These functions will fail if: \fBDomain Error\fR .ad .RS 16n -.rt +.rt The finite value of \fIx\fR is < \(mi0 or \fIx\fR is \(miInf. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -93,15 +93,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/tan.3m b/usr/src/man/man3m/tan.3m index ec4abcac2a..828af3ae9a 100644 --- a/usr/src/man/man3m/tan.3m +++ b/usr/src/man/man3m/tan.3m @@ -2,14 +2,14 @@ .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH tan 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH TAN 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME tan, tanf, tanl \- tangent function .SH SYNOPSIS @@ -60,7 +60,7 @@ These functions will fail if: \fBDomain Error\fR .ad .RS 16n -.rt +.rt The value of \fIx\fR is \(+-Inf. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -88,15 +88,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/tanh.3m b/usr/src/man/man3m/tanh.3m index d82cb1d437..926670a51d 100644 --- a/usr/src/man/man3m/tanh.3m +++ b/usr/src/man/man3m/tanh.3m @@ -2,14 +2,14 @@ .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH tanh 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH TANH 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME tanh, tanhf, tanhl \- hyperbolic tangent function .SH SYNOPSIS @@ -61,15 +61,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/tgamma.3m b/usr/src/man/man3m/tgamma.3m index 86b6ca38f5..fe3d769bab 100644 --- a/usr/src/man/man3m/tgamma.3m +++ b/usr/src/man/man3m/tgamma.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH tgamma 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH TGAMMA 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME tgamma, tgammaf, tgammal \- compute gamma function .SH SYNOPSIS @@ -72,7 +72,7 @@ These functions will fail if: \fBDomain Error\fR .ad .RS 16n -.rt +.rt The value of \fIx\fR is a negative integer or \fIx\fR is \(miInf. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -86,7 +86,7 @@ non-zero, then the invalid floating-point exception is raised. \fBPole Error\fR .ad .RS 16n -.rt +.rt The value of \fIx\fR is zero. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -100,7 +100,7 @@ non-zero, then the divide-by-zero floating-point exception is raised. \fBRange Error\fR .ad .RS 16n -.rt +.rt The value overflows. .sp If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is @@ -124,15 +124,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/trunc.3m b/usr/src/man/man3m/trunc.3m index ce03d545e5..3eaba55b2d 100644 --- a/usr/src/man/man3m/trunc.3m +++ b/usr/src/man/man3m/trunc.3m @@ -1,14 +1,14 @@ '\" te .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH trunc 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH TRUNC 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME trunc, truncf, truncl \- round to truncated integer value .SH SYNOPSIS @@ -57,15 +57,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3m/y0.3m b/usr/src/man/man3m/y0.3m index 3e8a66ab71..6be3ac613d 100644 --- a/usr/src/man/man3m/y0.3m +++ b/usr/src/man/man3m/y0.3m @@ -2,14 +2,14 @@ .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved. .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved. -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH y0 3M "12 Jul 2006" "SunOS 5.11" "Mathematical Library Functions" +.TH Y0 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions" .SH NAME y0, y0f, y0l, y1, y1f, y1l, yn, ynf, ynl \- Bessel functions of the second kind .SH SYNOPSIS @@ -108,15 +108,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilitySee below. +Interface Stability See below. _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .sp diff --git a/usr/src/man/man3mvec/vatan2_.3mvec b/usr/src/man/man3mvec/vatan2_.3mvec index d809b54992..c38eadffd1 100644 --- a/usr/src/man/man3mvec/vatan2_.3mvec +++ b/usr/src/man/man3mvec/vatan2_.3mvec @@ -3,7 +3,7 @@ .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH vatan2_ 3MVEC "14 Dec 2007" "SunOS 5.11" "Vector Math Library Functions" +.TH VATAN2_ 3MVEC "Dec 14, 2007" "SunOS 5.11" "Vector Math Library Functions" .SH NAME vatan2_, vatan2f_ \- vector atan2 functions .SH SYNOPSIS @@ -85,15 +85,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityCommitted +Interface Stability Committed _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3mvec/vatan_.3mvec b/usr/src/man/man3mvec/vatan_.3mvec index c7eab0a2c0..6dd84f5d1f 100644 --- a/usr/src/man/man3mvec/vatan_.3mvec +++ b/usr/src/man/man3mvec/vatan_.3mvec @@ -3,7 +3,7 @@ .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH vatan_ 3MVEC "14 Dec 2007" "SunOS 5.11" "Vector Math Library Functions" +.TH VATAN_ 3MVEC "Dec 14, 2007" "SunOS 5.11" "Vector Math Library Functions" .SH NAME vatan_, vatanf_ \- vector arctangent functions .SH SYNOPSIS @@ -82,15 +82,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityCommitted +Interface Stability Committed _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3mvec/vcos_.3mvec b/usr/src/man/man3mvec/vcos_.3mvec index 146d707c65..dbf1aada7e 100644 --- a/usr/src/man/man3mvec/vcos_.3mvec +++ b/usr/src/man/man3mvec/vcos_.3mvec @@ -3,7 +3,7 @@ .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH vcos_ 3MVEC "14 Dec 2007" "SunOS 5.11" "Vector Math Library Functions" +.TH VCOS_ 3MVEC "Dec 14, 2007" "SunOS 5.11" "Vector Math Library Functions" .SH NAME vcos_, vcosf_ \- vector cosine functions .SH SYNOPSIS @@ -82,15 +82,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityCommitted +Interface Stability Committed _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3mvec/vcospi_.3mvec b/usr/src/man/man3mvec/vcospi_.3mvec index 8334301d65..23c6de2225 100644 --- a/usr/src/man/man3mvec/vcospi_.3mvec +++ b/usr/src/man/man3mvec/vcospi_.3mvec @@ -3,7 +3,7 @@ .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH vcospi_ 3MVEC "14 Dec 2007" "SunOS 5.11" "Vector Math Library Functions" +.TH VCOSPI_ 3MVEC "Dec 14, 2007" "SunOS 5.11" "Vector Math Library Functions" .SH NAME vcospi_, vcospif_ \- vector cospi functions .SH SYNOPSIS @@ -94,15 +94,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityCommitted +Interface Stability Committed _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3mvec/vexp_.3mvec b/usr/src/man/man3mvec/vexp_.3mvec index 146c25c259..e5d1402dce 100644 --- a/usr/src/man/man3mvec/vexp_.3mvec +++ b/usr/src/man/man3mvec/vexp_.3mvec @@ -3,7 +3,7 @@ .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH vexp_ 3MVEC "14 Dec 2007" "SunOS 5.11" "Vector Math Library Functions" +.TH VEXP_ 3MVEC "Dec 14, 2007" "SunOS 5.11" "Vector Math Library Functions" .SH NAME vexp_, vexpf_ \- vector exponential functions .SH SYNOPSIS @@ -84,15 +84,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityCommitted +Interface Stability Committed _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3mvec/vhypot_.3mvec b/usr/src/man/man3mvec/vhypot_.3mvec index 9916c46746..00985f965b 100644 --- a/usr/src/man/man3mvec/vhypot_.3mvec +++ b/usr/src/man/man3mvec/vhypot_.3mvec @@ -3,7 +3,7 @@ .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH vhypot_ 3MVEC "14 Dec 2007" "SunOS 5.11" "Vector Math Library Functions" +.TH VHYPOT_ 3MVEC "Dec 14, 2007" "SunOS 5.11" "Vector Math Library Functions" .SH NAME vhypot_, vhypotf_ \- vector hypotenuse functions .SH SYNOPSIS @@ -85,15 +85,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityCommitted +Interface Stability Committed _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3mvec/vlog_.3mvec b/usr/src/man/man3mvec/vlog_.3mvec index 84522e98e0..4f44502cda 100644 --- a/usr/src/man/man3mvec/vlog_.3mvec +++ b/usr/src/man/man3mvec/vlog_.3mvec @@ -3,7 +3,7 @@ .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH vlog_ 3MVEC "14 Dec 2007" "SunOS 5.11" "Vector Math Library Functions" +.TH VLOG_ 3MVEC "Dec 14, 2007" "SunOS 5.11" "Vector Math Library Functions" .SH NAME vlog_, vlogf_ \- vector logarithm functions .SH SYNOPSIS @@ -82,15 +82,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityCommitted +Interface Stability Committed _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3mvec/vpow_.3mvec b/usr/src/man/man3mvec/vpow_.3mvec index f7fec2ea6e..65f707d355 100644 --- a/usr/src/man/man3mvec/vpow_.3mvec +++ b/usr/src/man/man3mvec/vpow_.3mvec @@ -3,7 +3,7 @@ .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH vpow_ 3MVEC "16 Jan 2009" "SunOS 5.11" "Vector Math Library Functions" +.TH VPOW_ 3MVEC "Jan 16, 2009" "SunOS 5.11" "Vector Math Library Functions" .SH NAME vpow_, vpowf_ \- vector power functions .SH SYNOPSIS @@ -87,15 +87,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityCommitted +Interface Stability Committed _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3mvec/vrhypot_.3mvec b/usr/src/man/man3mvec/vrhypot_.3mvec index b0f7a9f84a..097c5dbb42 100644 --- a/usr/src/man/man3mvec/vrhypot_.3mvec +++ b/usr/src/man/man3mvec/vrhypot_.3mvec @@ -3,7 +3,7 @@ .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH vrhypot_ 3MVEC "14 Dec 2007" "SunOS 5.11" "Vector Math Library Functions" +.TH VRHYPOT_ 3MVEC "Dec 14, 2007" "SunOS 5.11" "Vector Math Library Functions" .SH NAME vrhypot_, vrhypotf_ \- vector reciprocal hypotenuse functions .SH SYNOPSIS @@ -106,15 +106,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityCommitted +Interface Stability Committed _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3mvec/vrsqrt_.3mvec b/usr/src/man/man3mvec/vrsqrt_.3mvec index b8c6e7a7e3..2eb0ecee83 100644 --- a/usr/src/man/man3mvec/vrsqrt_.3mvec +++ b/usr/src/man/man3mvec/vrsqrt_.3mvec @@ -3,7 +3,7 @@ .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH vrsqrt_ 3MVEC "14 Dec 2007" "SunOS 5.11" "Vector Math Library Functions" +.TH VRSQRT_ 3MVEC "Dec 14, 2007" "SunOS 5.11" "Vector Math Library Functions" .SH NAME vrsqrt_, vrsqrtf_ \- vector reciprocal square root functions .SH SYNOPSIS @@ -107,15 +107,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityCommitted +Interface Stability Committed _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3mvec/vsin_.3mvec b/usr/src/man/man3mvec/vsin_.3mvec index f141e7e3e7..7b9658841b 100644 --- a/usr/src/man/man3mvec/vsin_.3mvec +++ b/usr/src/man/man3mvec/vsin_.3mvec @@ -3,7 +3,7 @@ .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH vsin_ 3MVEC "14 Dec 2007" "SunOS 5.11" "Vector Math Library Functions" +.TH VSIN_ 3MVEC "Dec 14, 2007" "SunOS 5.11" "Vector Math Library Functions" .SH NAME vsin_, vsinf_ \- vector sine functions .SH SYNOPSIS @@ -82,15 +82,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityCommitted +Interface Stability Committed _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3mvec/vsincos_.3mvec b/usr/src/man/man3mvec/vsincos_.3mvec index afbb8f4096..f28d6d4c54 100644 --- a/usr/src/man/man3mvec/vsincos_.3mvec +++ b/usr/src/man/man3mvec/vsincos_.3mvec @@ -3,7 +3,7 @@ .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH vsincos_ 3MVEC "14 Dec 2007" "SunOS 5.11" "Vector Math Library Functions" +.TH VSINCOS_ 3MVEC "Dec 14, 2007" "SunOS 5.11" "Vector Math Library Functions" .SH NAME vsincos_, vsincosf_ \- vector sincos functions .SH SYNOPSIS @@ -87,15 +87,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityCommitted +Interface Stability Committed _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3mvec/vsincospi_.3mvec b/usr/src/man/man3mvec/vsincospi_.3mvec index 109e365254..b9b7e4d285 100644 --- a/usr/src/man/man3mvec/vsincospi_.3mvec +++ b/usr/src/man/man3mvec/vsincospi_.3mvec @@ -3,7 +3,7 @@ .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH vsincospi_ 3MVEC "14 Dec 2007" "SunOS 5.11" "Vector Math Library Functions" +.TH VSINCOSPI_ 3MVEC "Dec 14, 2007" "SunOS 5.11" "Vector Math Library Functions" .SH NAME vsincospi_, vsincospif_ \- vector sincospi functions .SH SYNOPSIS @@ -109,15 +109,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityCommitted +Interface Stability Committed _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3mvec/vsinpi_.3mvec b/usr/src/man/man3mvec/vsinpi_.3mvec index 1e7262508d..87f9eeea7a 100644 --- a/usr/src/man/man3mvec/vsinpi_.3mvec +++ b/usr/src/man/man3mvec/vsinpi_.3mvec @@ -3,7 +3,7 @@ .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH vsinpi_ 3MVEC "14 Dec 2007" "SunOS 5.11" "Vector Math Library Functions" +.TH VSINPI_ 3MVEC "Dec 14, 2007" "SunOS 5.11" "Vector Math Library Functions" .SH NAME vsinpi_, vsinpif_ \- vector sinpi functions .SH SYNOPSIS @@ -100,15 +100,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityCommitted +Interface Stability Committed _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3mvec/vsqrt_.3mvec b/usr/src/man/man3mvec/vsqrt_.3mvec index d27b5e8e74..1b158f4b38 100644 --- a/usr/src/man/man3mvec/vsqrt_.3mvec +++ b/usr/src/man/man3mvec/vsqrt_.3mvec @@ -3,7 +3,7 @@ .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH vsqrt_ 3MVEC "14 Dec 2007" "SunOS 5.11" "Vector Math Library Functions" +.TH VSQRT_ 3MVEC "Dec 14, 2007" "SunOS 5.11" "Vector Math Library Functions" .SH NAME vsqrt_, vsqrtf_ \- vector square root functions .SH SYNOPSIS @@ -81,15 +81,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityCommitted +Interface Stability Committed _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3mvec/vz_abs_.3mvec b/usr/src/man/man3mvec/vz_abs_.3mvec index 7464b6ea8d..6cf962dd34 100644 --- a/usr/src/man/man3mvec/vz_abs_.3mvec +++ b/usr/src/man/man3mvec/vz_abs_.3mvec @@ -3,7 +3,7 @@ .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH vz_abs_ 3MVEC "14 Dec 2007" "SunOS 5.11" "Vector Math Library Functions" +.TH VZ_ABS_ 3MVEC "Dec 14, 2007" "SunOS 5.11" "Vector Math Library Functions" .SH NAME vz_abs_, vc_abs_ \- vector complex absolute value functions .SH SYNOPSIS @@ -81,15 +81,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityCommitted +Interface Stability Committed _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3mvec/vz_exp_.3mvec b/usr/src/man/man3mvec/vz_exp_.3mvec index b860dd3722..2003424c68 100644 --- a/usr/src/man/man3mvec/vz_exp_.3mvec +++ b/usr/src/man/man3mvec/vz_exp_.3mvec @@ -3,7 +3,7 @@ .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH vz_exp_ 3MVEC "14 Dec 2007" "SunOS 5.11" "Vector Math Library Functions" +.TH VZ_EXP_ 3MVEC "Dec 14, 2007" "SunOS 5.11" "Vector Math Library Functions" .SH NAME vz_exp_, vc_exp_ \- vector complex exponential functions .SH SYNOPSIS @@ -77,15 +77,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityCommitted +Interface Stability Committed _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3mvec/vz_log_.3mvec b/usr/src/man/man3mvec/vz_log_.3mvec index e40b293565..07b2958fc7 100644 --- a/usr/src/man/man3mvec/vz_log_.3mvec +++ b/usr/src/man/man3mvec/vz_log_.3mvec @@ -3,7 +3,7 @@ .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH vz_log_ 3MVEC "14 Dec 2007" "SunOS 5.11" "Vector Math Library Functions" +.TH VZ_LOG_ 3MVEC "Dec 14, 2007" "SunOS 5.11" "Vector Math Library Functions" .SH NAME vz_log_, vc_log_ \- vector complex logarithm functions .SH SYNOPSIS @@ -72,15 +72,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityCommitted +Interface Stability Committed _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3mvec/vz_pow_.3mvec b/usr/src/man/man3mvec/vz_pow_.3mvec index 7ee7a0e847..e51fdaa297 100644 --- a/usr/src/man/man3mvec/vz_pow_.3mvec +++ b/usr/src/man/man3mvec/vz_pow_.3mvec @@ -3,7 +3,7 @@ .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH vz_pow_ 3MVEC "14 Dec 2007" "SunOS 5.11" "Vector Math Library Functions" +.TH VZ_POW_ 3MVEC "Dec 14, 2007" "SunOS 5.11" "Vector Math Library Functions" .SH NAME vz_pow_, vc_pow_ \- vector complex power functions .SH SYNOPSIS @@ -80,15 +80,15 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) +tab( ) box; +cw(2.75i) |cw(2.75i) +lw(2.75i) |lw(2.75i) . -ATTRIBUTE TYPEATTRIBUTE VALUE +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityCommitted +Interface Stability Committed _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3nsl/doconfig.3nsl b/usr/src/man/man3nsl/doconfig.3nsl index be029453ec..7190d9cd47 100644 --- a/usr/src/man/man3nsl/doconfig.3nsl +++ b/usr/src/man/man3nsl/doconfig.3nsl @@ -65,7 +65,7 @@ invalid. .sp .ne 2 .na -\fB\fBpush\fR \fImodule1\fR[, \fImodule2\fR, \fImodule3\fR, . . .]\fR +\fB\fBpush\fR \fImodule1\fR[, \fImodule2\fR, \fImodule3\fR, ...]\fR .ad .sp .6 .RS 4n diff --git a/usr/src/man/man3nsl/gethostbyname.3nsl b/usr/src/man/man3nsl/gethostbyname.3nsl index 3dd90e3471..62097861e2 100644 --- a/usr/src/man/man3nsl/gethostbyname.3nsl +++ b/usr/src/man/man3nsl/gethostbyname.3nsl @@ -278,7 +278,7 @@ int main(int argc, const char **argv) struct in_addr in; char **q; (void) memcpy(&in.s_addr, *p, sizeof (in.s_addr)); - (void) printf("%s\t%s", inet_ntoa(in), hp\(mi>h_name); + (void) printf("%s\et%s", inet_ntoa(in), hp\(mi>h_name); for (q = hp->h_aliases; *q != 0; q++) (void) printf(" %s", *q); (void) putchar('\en'); diff --git a/usr/src/man/man3nsl/rpc_gss_get_principal_name.3nsl b/usr/src/man/man3nsl/rpc_gss_get_principal_name.3nsl index e93c854139..0f5514d603 100644 --- a/usr/src/man/man3nsl/rpc_gss_get_principal_name.3nsl +++ b/usr/src/man/man3nsl/rpc_gss_get_principal_name.3nsl @@ -34,8 +34,8 @@ mechanism-dependent principal name of the \fBrpc_gss_principal_t\fR structure type. .SH PARAMETERS .LP -How many of the identifying parameters (\fIname \fR, \fInode\fR, and \fI -\fRdomain\fI)\fR are necessary to specify depends on the mechanism being used. +How many of the identifying parameters (\fIname\fR, \fInode\fR, and +\fIdomain\fR) are necessary to specify depends on the mechanism being used. For example, Kerberos V5 requires only a user name but can accept a node and domain name. An application can choose to set unneeded parameters to \fINULL.\fR diff --git a/usr/src/man/man3nsl/t_error.3nsl b/usr/src/man/man3nsl/t_error.3nsl index 84ea5e8840..31d227a15e 100644 --- a/usr/src/man/man3nsl/t_error.3nsl +++ b/usr/src/man/man3nsl/t_error.3nsl @@ -144,4 +144,4 @@ MT Level Safe .SH SEE ALSO .sp .LP -\fBt_errno\fR(3NSL)\fBstrerror\fR(3C), \fBattributes\fR(5) +\fBt_errno\fR(3NSL), \fBstrerror\fR(3C), \fBattributes\fR(5) diff --git a/usr/src/man/man3papi/papiJobSubmit.3papi b/usr/src/man/man3papi/papiJobSubmit.3papi index 17ce4e7f08..99be053a57 100644 --- a/usr/src/man/man3papi/papiJobSubmit.3papi +++ b/usr/src/man/man3papi/papiJobSubmit.3papi @@ -454,11 +454,11 @@ main(int ac, char *av[]) "printer-name", &name); (void) papiAttributeListGetInteger(list, NULL, "job-id", &id); - while (papiAttributeListToString(list, "\n\t", buffer, + while (papiAttributeListToString(list, "\en\et", buffer, size) != PAPI_OK) buffer = realloc(buffer, size += BUFSIZ); - printf("%s-%d:\en\t%s\en", name, id, buffer); + printf("%s-%d:\en\et%s\en", name, id, buffer); free(buffer); } } @@ -572,7 +572,7 @@ main(int ac, char *av[]) != PAPI_OK) buffer = realloc(buffer, size += BUFSIZ); - printf("%s-%d:\en\et%s\n", name, id, buffer); + printf("%s-%d:\en\et%s\en", name, id, buffer); free(buffer); } } else @@ -698,11 +698,11 @@ main(int ac, char *av[]) "printer-name", &name); (void) papiAttributeListGetInteger(list, NULL, "job-id", &id); - while (papiAttributeListToString(list, "\n\t", buffer, size) + while (papiAttributeListToString(list, "\en\et", buffer, size) != PAPI_OK) buffer = realloc(buffer, size += BUFSIZ); - printf("%s-%d:\en\t%s\en", name, id, buffer); + printf("%s-%d:\en\et%s\en", name, id, buffer); free(buffer); } } else diff --git a/usr/src/man/man3picl/libpicl.3picl b/usr/src/man/man3picl/libpicl.3picl index 8f037358c2..167c69a09f 100644 --- a/usr/src/man/man3picl/libpicl.3picl +++ b/usr/src/man/man3picl/libpicl.3picl @@ -68,7 +68,7 @@ has a handle to a node in the tree as its value. A \fBreference\fR property may be used to establish an association between any two nodes in the tree. A \fBtimestamp\fR property type has the value of time in seconds since Epoch. A \fBbytearray\fR property type has an array of bytes as its value. A -\fBcharstring\fR property type has a nul ('\0') terminated sequence of ASCII +\fBcharstring\fR property type has a nul ('\e0') terminated sequence of ASCII characters. The size of a property specifies the size of its value in bytes. A \fBvoid\fR property type denotes a property that exists but has no value. .sp diff --git a/usr/src/man/man3sasl/sasl_getopt_t.3sasl b/usr/src/man/man3sasl/sasl_getopt_t.3sasl index 3c18f27e8f..c087ff3d8c 100644 --- a/usr/src/man/man3sasl/sasl_getopt_t.3sasl +++ b/usr/src/man/man3sasl/sasl_getopt_t.3sasl @@ -42,7 +42,7 @@ The option context from the callback record. .ad .RS 15n The name of the plug-in. If the value of \fIplugin_name\fR is \fINULL\fR, the -the plug-in is a general SASL option. +plug-in is a general SASL option. .RE .sp diff --git a/usr/src/man/man3slp/SLPReg.3slp b/usr/src/man/man3slp/SLPReg.3slp index 7fcba4570b..000ca21677 100644 --- a/usr/src/man/man3slp/SLPReg.3slp +++ b/usr/src/man/man3slp/SLPReg.3slp @@ -171,7 +171,7 @@ When set, use this file for configuration. \fISystem Administration Guide: Network Services\fR .sp .LP -Guttman, E., Perkins, C., Veizades, J., and Day, M.,\fIRFC 2608, Service +Guttman, E., Perkins, C., Veizades, J., and Day, M. \fIRFC 2608, Service Location Protocol, Version 2\fR. The Internet Society. June 1999. .sp .LP diff --git a/usr/src/man/man3slp/SLPUnescape.3slp b/usr/src/man/man3slp/SLPUnescape.3slp index 32908ad90e..0bec2e53ab 100644 --- a/usr/src/man/man3slp/SLPUnescape.3slp +++ b/usr/src/man/man3slp/SLPUnescape.3slp @@ -99,7 +99,7 @@ When set, use this file for configuration. \fISystem Administration Guide: Network Services\fR .sp .LP -Guttman, E., Perkins, C., Veizades, J., and Day, M.\fIRFC 2608, Service +Guttman, E., Perkins, C., Veizades, J., and Day, M. \fIRFC 2608, Service Location Protocol, Version 2\fR. The Internet Society. June 1999. .sp .LP diff --git a/usr/src/man/man3slp/slp_api.3slp b/usr/src/man/man3slp/slp_api.3slp index e60fb7b846..0724784449 100644 --- a/usr/src/man/man3slp/slp_api.3slp +++ b/usr/src/man/man3slp/slp_api.3slp @@ -59,10 +59,10 @@ unescape strings and convert escaped string-encoded opaques to binary. The .LP Opaque values consist of a character buffer that contains a \fBUTF-8\fR-encoded string, the first characters of which are the non \fBUTF-8\fR encoding -"\fB\ff\fR". Subsequent characters are the escaped values for the original +"\fB\eff\fR". Subsequent characters are the escaped values for the original bytes in the opaque. The escape convention is relatively simple. An escape consists of a backslash followed by the two hexadecimal digits encoding the -byte. An example is "\fB\2c\fR" for the byte \fB0x2c\fR. Clients handle opaque +byte. An example is "\fB\e2c\fR" for the byte \fB0x2c\fR. Clients handle opaque processing themselves, since the algorithm is relatively simple and uniform. .SS "System Properties" .sp diff --git a/usr/src/man/man3socket/accept.3socket b/usr/src/man/man3socket/accept.3socket index c253ba3aea..1cd0dc2546 100644 --- a/usr/src/man/man3socket/accept.3socket +++ b/usr/src/man/man3socket/accept.3socket @@ -223,7 +223,7 @@ accepted. .sp .LP -\fBAdditionally, \fBaccept4()\fR will fail if: +Additionally, \fBaccept4()\fR will fail if: .sp .ne 2 .na diff --git a/usr/src/man/man3socket/connect.3socket b/usr/src/man/man3socket/connect.3socket index 7da31cd712..91ad73b980 100644 --- a/usr/src/man/man3socket/connect.3socket +++ b/usr/src/man/man3socket/connect.3socket @@ -130,7 +130,7 @@ main(int argc, char *argv[]) errno = 0; port = strtol(argv[2], &eptr, 10); - if (errno != 0 || *eptr != '\0') { + if (errno != 0 || *eptr != '\e0') { fprintf(stderr, "failed to parse port %s\\n", argv[2]); return (1); } diff --git a/usr/src/man/man3socket/getipnodebyname.3socket b/usr/src/man/man3socket/getipnodebyname.3socket index e26d2325d1..9b68ea15ff 100644 --- a/usr/src/man/man3socket/getipnodebyname.3socket +++ b/usr/src/man/man3socket/getipnodebyname.3socket @@ -476,7 +476,7 @@ hostname. char **q; bcopy(*p, (caddr_t)&in6, hp->h_length); - (void) printf("%s\t%s", inet_ntop(AF_INET6, (void *)&in6, + (void) printf("%s\et%s", inet_ntop(AF_INET6, (void *)&in6, abuf, sizeof(abuf)), hp->h_name); for (q = hp->h_aliases; *q != 0; q++) (void) printf(" %s", *q); diff --git a/usr/src/man/man3socket/send.3socket b/usr/src/man/man3socket/send.3socket index e50e8a5492..9dc9d47699 100644 --- a/usr/src/man/man3socket/send.3socket +++ b/usr/src/man/man3socket/send.3socket @@ -263,7 +263,7 @@ The \fBsend()\fR function returns errors under the following conditions: The socket is shut down for writing, or the socket is connection-mode and is no longer connected. In the latter case, if the socket is of type \fBSOCK_STREAM\fR, the \fBSIGPIPE\fR signal is generated to the calling thread -unless the \fB\fBMSG_NOSIGNAL\fR flag is set. +unless the \fBMSG_NOSIGNAL\fR flag is set. .RE .SH ATTRIBUTES diff --git a/usr/src/man/man3socket/spray.3socket b/usr/src/man/man3socket/spray.3socket index ed725e2c3d..994d3543d4 100644 --- a/usr/src/man/man3socket/spray.3socket +++ b/usr/src/man/man3socket/spray.3socket @@ -76,7 +76,7 @@ The following code fragment demonstrates how the spray program is used: .nf #include <rpc/rpc.h> #include <rpcsvc/spray.h> - . . . +\&... spraycumul spray_result; sprayarr spray_data; char buf[100]; /* arbitrary data */ diff --git a/usr/src/man/man3tecla/gl_get_line.3tecla b/usr/src/man/man3tecla/gl_get_line.3tecla index 9058882b5f..a8c2702f3c 100644 --- a/usr/src/man/man3tecla/gl_get_line.3tecla +++ b/usr/src/man/man3tecla/gl_get_line.3tecla @@ -1526,7 +1526,7 @@ under a pseudo terminal. The \fBerrno\fR value is \fBEPIPE\fR. \fB\fBSIGQUIT\fR\fR .ad .RS 11n -This signal is generated by the keyboard quit key (usually \fB^\\fR). The +This signal is generated by the keyboard quit key (usually \fB^\e\fR). The \fBerrno\fR value is \fBEINTR\fR. .RE diff --git a/usr/src/man/man3tnf/TNF_DECLARE_RECORD.3tnf b/usr/src/man/man3tnf/TNF_DECLARE_RECORD.3tnf index 5a47d75d8e..79cf63c24c 100644 --- a/usr/src/man/man3tnf/TNF_DECLARE_RECORD.3tnf +++ b/usr/src/man/man3tnf/TNF_DECLARE_RECORD.3tnf @@ -139,7 +139,7 @@ pal_free(pal_header_t *header_p) "sunw%debug entering pal_free", tnf_long, state_var, state, pal_tnf_header, header_var, header_p); - . . . + ... } .fi .in -2 diff --git a/usr/src/man/man3tsol/bltos.3tsol b/usr/src/man/man3tsol/bltos.3tsol index 250714e028..beed1de478 100644 --- a/usr/src/man/man3tsol/bltos.3tsol +++ b/usr/src/man/man3tsol/bltos.3tsol @@ -194,7 +194,7 @@ dominated by the process sensitivity label and the process does not have If memory cannot be allocated for the return string or if the pre-allocated return string memory is insufficient to hold the string, these functions return 0. The value of the pre-allocated string is set to the \fINULL\fR string -(\fB*string[0]='\00';\fR). +(\fBstring[0]='\e0';\fR). .SH FILES .sp .ne 2 diff --git a/usr/src/man/man4/a.out.4 b/usr/src/man/man4/a.out.4 index e4fa3e7554..3f4a3a0f8b 100644 --- a/usr/src/man/man4/a.out.4 +++ b/usr/src/man/man4/a.out.4 @@ -38,17 +38,17 @@ _ ELF header ELF header _ Program header table Program header table -\fIoptional\fR +\fIoptional\fR _ Section 1 Segment 1 _ -\&. . . +\&... _ Section \fIn\fR Segment 2 _ -\&. . . +\&... _ -\&. . . \&. . . +\&... \&... _ Section header table Section header table \fIoptional\fR diff --git a/usr/src/man/man4/contract.4 b/usr/src/man/man4/contract.4 index 6652622b51..26c2458504 100644 --- a/usr/src/man/man4/contract.4 +++ b/usr/src/man/man4/contract.4 @@ -616,7 +616,7 @@ Status info for contract ID \fBct_event_get_evid\fR(3CONTRACT), \fBct_event_get_flags\fR(3CONTRACT), \fBct_event_get_nevid\fR(3CONTRACT), \fBct_event_get_newct\fR(3CONTRACT), \fBct_event_get_type\fR(3CONTRACT), -\fBct_status_read\fR(3CONTRACT)\fBct_status_get_cookie\fR(3CONTRACT), +\fBct_status_read\fR(3CONTRACT), \fBct_status_get_cookie\fR(3CONTRACT), \fBct_status_get_critical\fR(3CONTRACT), \fBct_status_get_holder\fR(3CONTRACT), \fBct_status_get_id\fR(3CONTRACT), \fBct_status_get_informative\fR(3CONTRACT), \fBct_status_get_nevid\fR(3CONTRACT), \fBct_status_get_nevents\fR(3CONTRACT), diff --git a/usr/src/man/man4/core.4 b/usr/src/man/man4/core.4 index f5445fb06e..9c06bcc42e 100644 --- a/usr/src/man/man4/core.4 +++ b/usr/src/man/man4/core.4 @@ -455,7 +455,7 @@ more details. \fB\fBprsecflags_t\fR\fR .ad .RS 15n -\fBn_type\fR: \fbNT_SECFLAGS\fR. This entry contains the process +\fBn_type\fR: \fBNT_SECFLAGS\fR. This entry contains the process security-flags, see \fBsecurity-flags\fR(5), \fBproc\fR(4), and \fBpsecflags\fR(1) for more information. .RE diff --git a/usr/src/man/man4/driver.conf.4 b/usr/src/man/man4/driver.conf.4 index e2073a3035..ab95b1c462 100644 --- a/usr/src/man/man4/driver.conf.4 +++ b/usr/src/man/man4/driver.conf.4 @@ -115,10 +115,10 @@ by the prototype \fBdevinfo\fR node is really present. Property names must not violate the naming conventions for Open Boot PROM properties or for IEEE 1275 names. In particular, property names should contain only printable characters, and should not contain at-sign (\fB@\fR), slash -(\fB/\fR), backslash (\fB\\fR), colon (\fB:\fR), or square brackets (\fB[]\fR). -Property values can be decimal integers or strings delimited by double quotes -(\fB"\fR). Hexadecimal integers can be constructed by prefixing the digits with -\fB0x\fR. +(\fB/\fR), backslash (\fB\e\fR), colon (\fB:\fR), or square brackets +(\fB[]\fR). Property values can be decimal integers or strings delimited by +double quotes (\fB"\fR). Hexadecimal integers can be constructed by prefixing +the digits with \fB0x\fR. .sp .LP A comma separated list of integers can be used to construct properties whose diff --git a/usr/src/man/man4/exec_attr.4 b/usr/src/man/man4/exec_attr.4 index b15eb08cb6..a2eb6b77a4 100644 --- a/usr/src/man/man4/exec_attr.4 +++ b/usr/src/man/man4/exec_attr.4 @@ -36,8 +36,8 @@ profiles in the \fBuser_attr\fR(4) database file. .LP Each entry in the \fBexec_attr\fR database consists of one line of text containing seven fields separated by colons (\fB:\fR). Line continuations using -the backslash (\fB\\fR) character are permitted. The basic format of each entry -is: +the backslash (\fB\e\fR) character are permitted. The basic format of each +entry is: .sp .LP \fIname\fR:\fIpolicy\fR:\fItype\fR:\fIres1\fR:\fIres2\fR:\fIid\fR:\fIattr\fR @@ -218,7 +218,7 @@ conflicts. .LP The following characters are used in describing the database format and must be escaped with a backslash if used as data: colon (\fB:\fR), semicolon (\fB;\fR), -equals (\fB=\fR), and backslash (\fB\\fR). +equals (\fB=\fR), and backslash (\fB\e\fR). .SH SEE ALSO .LP \fBauths\fR(1), \fBprofiles\fR(1), \fBroles\fR(1), diff --git a/usr/src/man/man4/gateways.4 b/usr/src/man/man4/gateways.4 index 9b90109061..ae4abcf561 100644 --- a/usr/src/man/man4/gateways.4 +++ b/usr/src/man/man4/gateways.4 @@ -454,8 +454,7 @@ serves as a \fBpoor man's router discovery\fR protocol. .sp .ne 2 .na -\fB\fBtrust_gateway=\fIrtr_name\fR[|\fInet1\fR/\fImask1\fR|\fInet2\fR/\fImask2\ -fR|...]\fR\fR +\fB\fBtrust_gateway=\fIrtr_name\fR[|\fInet1\fR/\fImask1\fR|\fInet2\fR/\fImask2\fR|...]\fR\fR .ad .sp .6 .RS 4n diff --git a/usr/src/man/man4/hosts_access.4 b/usr/src/man/man4/hosts_access.4 index 1a8f493667..ebeaa7f513 100644 --- a/usr/src/man/man4/hosts_access.4 +++ b/usr/src/man/man4/hosts_access.4 @@ -374,13 +374,14 @@ to the access control software, even though the host is registered. Domain name server lookups are case insensitive; NIS (formerly YP) netgroup lookups are case sensitive. .SH AUTHOR -.na +.nf Wietse Venema (wietse@wzv.win.tue.nl) Department of Mathematics and Computing Science Eindhoven University of Technology -Den Dolech 2, P.O. Box 513, +Den Dolech 2, P.O. Box 513 5600 MB Eindhoven, The Netherlands -\" @(#) hosts_access.5 1.20 95/01/30 19:51:46 +.fi +.\" @(#) hosts_access.5 1.20 95/01/30 19:51:46 .\" Begin Sun update .SH ATTRIBUTES See diff --git a/usr/src/man/man4/hosts_options.4 b/usr/src/man/man4/hosts_options.4 index 593f68c495..0fcc660792 100644 --- a/usr/src/man/man4/hosts_options.4 +++ b/usr/src/man/man4/hosts_options.4 @@ -159,7 +159,6 @@ and service is denied. .SH SEE ALSO hosts_access(4), the default access control language .SH AUTHOR -.na .nf Wietse Venema (wietse@wzv.win.tue.nl) Department of Mathematics and Computing Science diff --git a/usr/src/man/man4/slp.conf.4 b/usr/src/man/man4/slp.conf.4 index c1cf31f83e..ecb2e90f0c 100644 --- a/usr/src/man/man4/slp.conf.4 +++ b/usr/src/man/man4/slp.conf.4 @@ -59,7 +59,7 @@ sother = %x21-%x29 / %x2a-%x2b / %x5b-%x60 / %7b-%7e ; i.e., all characters except `,' allchar = DIGIT / ALPHA / HTAB / SP -escape = "\" HEXDIG HEXDIG +escape = "\e" HEXDIG HEXDIG ; Used for reserved characters .fi .in -2 @@ -1137,11 +1137,11 @@ Interface Stability Standard \fISystem Administration Guide: Network Services\fR .sp .LP -Alvestrand, H.\fIRFC 1766: Tags for the Identification of Languages\fR. Network -Working Group. March 1995. +Alvestrand, H. \fIRFC 1766: Tags for the Identification of Languages\fR. +Network Working Group. March 1995. .sp .LP -Crocker, D., Overell, P.\fIRFC 2234, Augmented BNF for Syntax Specifications: +Crocker, D., Overell, P. \fIRFC 2234, Augmented BNF for Syntax Specifications: ABNF\fR. The Internet Society. 1997. .sp .LP diff --git a/usr/src/man/man5/charmap.5 b/usr/src/man/man5/charmap.5 index 9feb35335d..641bdd908c 100644 --- a/usr/src/man/man5/charmap.5 +++ b/usr/src/man/man5/charmap.5 @@ -312,7 +312,7 @@ END WIDTH In this example, the numerical code point values represented by the symbols \fB<A>\fR and \fB<B>\fR are assigned a width of \fB1\fR. The code point values \fB< C>\fR to \fB<Z>\fR inclusive, that is, \fB<C>\fR, \fB<D>\fR, \fB<E>\fR, -and so on, are also assigned a width of \fB1\fR. Using \fB<A>. . .<Z>\fR would +and so on, are also assigned a width of \fB1\fR. Using \fB<A>...<Z>\fR would have required fewer lines, but the alternative was shown to demonstrate flexibility. The keyword \fBWIDTH_DEFAULT\fR could have been added as appropriate. diff --git a/usr/src/man/man5/mansun.5 b/usr/src/man/man5/mansun.5 index 317e38c321..000ddc95bd 100644 --- a/usr/src/man/man5/mansun.5 +++ b/usr/src/man/man5/mansun.5 @@ -71,7 +71,7 @@ Change to default type size. c c c c c c c c . \fIRequest\fR \fICause\fR \fIIf no\fR \fIExplanation\fR - \fIBreak\fR \fIArgument\fR + \fIBreak\fR \fIArgument\fR \fB\&.B \fR\fIt\fR no \fIt\fR=n.t.l.* Text is in bold font. \fB\&.BI \fR\fIt\fR no \fIt\fR=n.t.l. Join words, alternating bold and italic. \fB\&.BR \fR\fIt\fR no \fIt\fR=n.t.l. Join words, alternating bold and Roman. @@ -110,7 +110,7 @@ T} \fB\&.SH \fR\fIt\fR yes - Section Heading. \fB\&.SM \fR\fIt\fR no \fIt\fR=n.t.l. Reduce size of text by 1 point. \fB\&.SS \fR\fIt\fR yes \fIt\fR=n.t.l. Section Subheading. -\fB\&.TH \FR\FIN S "f d, m\fR" +\fB\&.TH \fR\fIN S "f d, m\fR" \fB\&.TH \fR\fIn s d f m\fR yes - T{ Begin reference page \fIn\fR, of of section \fIs\fR; \fId\fR is the date of the most recent change. If present, \fIf\fR is the left page footer; \fIm\fR is the main page (center) header. Sets prevailing indent and tabs to .5i. T} @@ -140,7 +140,7 @@ A typical manual page for a command or function is laid out as follows: .sp .ne 2 .na -\fB\&.TH\fI TITLE \FR[1-8]\FR " , " +\fB\&.TH\fI TITLE \fR[1-8]\fR " , " .ad .RS 21n The name of the command or function, which serves as the title of the manual diff --git a/usr/src/man/man5/privileges.5 b/usr/src/man/man5/privileges.5 index b7f227f497..9074cada11 100644 --- a/usr/src/man/man5/privileges.5 +++ b/usr/src/man/man5/privileges.5 @@ -582,7 +582,7 @@ including the RT class. .sp .ne 2 .na -\fB\PRIV_PROC_SECFLAGS\fR +\fBPRIV_PROC_SECFLAGS\fR .ad .sp .6 .RS 4n diff --git a/usr/src/man/man5/prof.5 b/usr/src/man/man5/prof.5 index 394f4be80d..acb05d041f 100644 --- a/usr/src/man/man5/prof.5 +++ b/usr/src/man/man5/prof.5 @@ -53,14 +53,14 @@ line, the marks are ignored. work( ) { int i, j; - . . . + ... MARK(loop1); for (i = 0; i < 2000; i++) { - . . . + ... } MARK(loop2); for (j = 0; j < 2000; j++) { - . . . + ... } } .fi diff --git a/usr/src/man/man5/regexp.5 b/usr/src/man/man5/regexp.5 index 7ca3c1df4a..d305910d89 100644 --- a/usr/src/man/man5/regexp.5 +++ b/usr/src/man/man5/regexp.5 @@ -584,9 +584,9 @@ might be defined by an application program: #define ERROR(c) regerr() #include <regexp.h> - . . . +\&... (void) compile(*argv, expbuf, &expbuf[ESIZE],'\e0'); - . . . +\&... if (step(linebuf, expbuf)) succeed; .fi diff --git a/usr/src/man/man5/tecla.5 b/usr/src/man/man5/tecla.5 index e9f7092a7c..1620e95f7d 100644 --- a/usr/src/man/man5/tecla.5 +++ b/usr/src/man/man5/tecla.5 @@ -59,7 +59,7 @@ the 'A' key. .sp .ne 2 .na -\fB\fB\E\fR or \fBM-\fR\fR +\fB\eE\fR or \fBM-\fR .ad .RS 13n In key sequences, both of these notations can be entered either by pressing the @@ -977,7 +977,7 @@ Entering Repeat Counts section. Terminate and return the current contents of the line, after appending a newline character. The newline character is normally '\en', but will be the first character of the key sequence that invoked the newline action, if this -happens to be a printable character. If the action was invoked by the '\n' +happens to be a printable character. If the action was invoked by the '\en' newline character or the '\er' carriage return character, the line is appended to the history buffer. .RE @@ -1524,7 +1524,7 @@ user-interrupt .sp .ne 2 .na -\fB\fB^\\fR\fR +\fB^\e\fR .ad .RS 6n abort @@ -2037,7 +2037,7 @@ user-interrupt .sp .ne 2 .na -\fB\fB^\\fR\fR +\fB^\e\fR .ad .RS 8n abort @@ -2091,7 +2091,7 @@ user-interrupt .sp .ne 2 .na -\fB\fBM-^\\fR\fR +\fBM-^\e\fR .ad .RS 8n abort @@ -2343,7 +2343,7 @@ active. .sp .ne 2 .na -\fB\fBM-\\fR\fR +\fBM-<space>\fR .ad .RS 21n cursor-right (META-space) @@ -2667,7 +2667,7 @@ vi-forward-change-char .sp .ne 2 .na -\fB\fBM-c\\fR\fR +\fBM-c<space>\fR .ad .RS 21n vi-forward-change-char (META-c-space) @@ -2757,7 +2757,7 @@ forward-delete-char .sp .ne 2 .na -\fB\fBM-d\fR\fR +\fBM-d<space>\fR .ad .RS 21n forward-delete-char (META-d-space) @@ -3243,7 +3243,7 @@ forward-copy-char .sp .ne 2 .na -\fB\fBM-y\\fR\fR +\fBM-y<space>\fR .ad .RS 21n forward-copy-char (META-y-space) @@ -3504,7 +3504,7 @@ complete-word .sp .ne 2 .na -\fB\fBM-\r\fR\fR +\fBM-\er\fR .ad .RS 21n newline diff --git a/usr/src/man/man5/zpool-features.5 b/usr/src/man/man5/zpool-features.5 index 214e34f67f..de811d6d3d 100644 --- a/usr/src/man/man5/zpool-features.5 +++ b/usr/src/man/man5/zpool-features.5 @@ -244,7 +244,7 @@ on systems without support for the \fBlz4_compress\fR feature. Booting off of \fBlz4\fR-compressed root pools is supported. This feature becomes \fBactive\fR as soon as it is enabled and will -never return to being \fBenabled\fB. +never return to being \fBenabled\fR. .RE .sp @@ -350,7 +350,7 @@ in which new features are enabled. This has no user-visible impact, but other features may depend on this feature. This feature becomes \fBactive\fR as soon as it is enabled and will -never return to being \fBenabled\fB. +never return to being \fBenabled\fR. .RE @@ -392,7 +392,7 @@ created after this feature is enabled will use this new metadata to avoid sending information about holes that already exist on the receiving side. This feature becomes \fBactive\fR as soon as it is enabled and will -never return to being \fBenabled\fB. +never return to being \fBenabled\fR. .RE diff --git a/usr/src/man/man7d/scsa1394.7d b/usr/src/man/man7d/scsa1394.7d index a9ae97d88b..239dbb0e31 100644 --- a/usr/src/man/man7d/scsa1394.7d +++ b/usr/src/man/man7d/scsa1394.7d @@ -191,7 +191,7 @@ Architecture SPARC, x86, PCI-based systems SCSI Specification \fIT10/995D Revision 11a\fR \(em March 1997 .sp .LP -SCSI Specification\fIT10/1236-D Revision 20\fR \(em July 2001 +SCSI Specification \fIT10/1236-D Revision 20\fR \(em July 2001 .sp .LP -SCSI Specification\fIT10/1416-D Revision 23\fR\(em May 2005 +SCSI Specification \fIT10/1416-D Revision 23\fR \(em May 2005 diff --git a/usr/src/man/man7d/ssd.7d b/usr/src/man/man7d/ssd.7d index 80a3a93395..999081ca77 100644 --- a/usr/src/man/man7d/ssd.7d +++ b/usr/src/man/man7d/ssd.7d @@ -276,7 +276,7 @@ partition \fIn\fR (0-7) .LP \fBsar\fR(1), \fBformat\fR(1M), \fBiostat\fR(1M), \fBioctl\fR(2), \fBlseek\fR(2), \fBopen\fR(2), \fBread\fR(2), \fBwrite\fR(2), -\fBscsi\fR(4)\fBdriver.conf\fR(4), \fBcdio\fR(7I), \fBdkio\fR(7I) +\fBscsi\fR(4), \fBdriver.conf\fR(4), \fBcdio\fR(7I), \fBdkio\fR(7I) .sp .LP \fIANSI Small Computer System Interface-2 (SCSI-2)\fR diff --git a/usr/src/man/man7d/st.7d b/usr/src/man/man7d/st.7d index 2e1ab1ca38..6d5734d97c 100644 --- a/usr/src/man/man7d/st.7d +++ b/usr/src/man/man7d/st.7d @@ -170,7 +170,7 @@ or <non-motion time-out>, <I/O time-out>, <rewind time-out>, <space time-out>, <load time-out>, <unload time-out>, - <erase time-out>; + <erase time-out>; .fi .in -2 .sp @@ -194,7 +194,7 @@ information.) \fBSCSI\fR inquiry command. This string may contain any character in the range \fB0x20-0x7e\fR. Characters such as " " " (double quote) or " ' " (single quote), which are not permitted in property value strings, are represented by -their octal equivalent (for example, \fB\042\fR and \fB\047\fR). Trailing +their octal equivalent (for example, \fB\e042\fR and \fB\e047\fR). Trailing spaces may be truncated. .sp .LP diff --git a/usr/src/man/man7d/tzmon.7d b/usr/src/man/man7d/tzmon.7d index 78b63ea193..388087a506 100644 --- a/usr/src/man/man7d/tzmon.7d +++ b/usr/src/man/man7d/tzmon.7d @@ -14,7 +14,7 @@ Thermal zones are logical regions within a computer system for which ACPI performs temperature monitoring and control functions. The number of thermal zones on a system with ACPI support varies. For example, some systems may have one or more thermal zones, while others may have none. See the \fIAdvanced -Configuration and Power Interface Specification, (ACPI) Version 3.0A.\fR for +Configuration and Power Interface Specification, (ACPI) Version 3.0A\fR, for more details. .sp .LP diff --git a/usr/src/man/man7d/ugen.7d b/usr/src/man/man7d/ugen.7d index cb5f430d2c..b7a3079a28 100644 --- a/usr/src/man/man7d/ugen.7d +++ b/usr/src/man/man7d/ugen.7d @@ -457,7 +457,7 @@ if (data_xfered != sizeof (request)) { ... } - } +} .fi .in -2 @@ -518,7 +518,7 @@ void init_cntrl_req( req[5] = 0xFF & (wIndex >> 8); req[6] = 0xFF & wLength; req[7] = 0xFF & (wLength >> 8); - } +} .... @@ -669,7 +669,7 @@ configuration. For sake of brevity, uninteresting parts are omitted. init_cntrl_req(&setup_data, USB_DEV_REQ_DEV_TO_HOST, USB_REQ_GET_DESCR, USB_DESCR_TYPE_SETUP_CFG, 0, totalLength); - count = write(ctrl_fd, &setup_data, sizeof (setup_data)); + count = write(ctrl_fd, &setup_data, sizeof (setup_data)); if (count != sizeof (setup_data)) { /* Error recovery. */ } else { @@ -1061,7 +1061,7 @@ The following example shows how to read an isochronous-IN endpoint: char rdbuf[5000]; pktcnt = 4; /* 4 packets in this request */ - + len = sizeof(int) + sizeof(ugen_isoc_pkt_descr_t) * pktcount; @@ -1166,13 +1166,13 @@ endpoint: len = sizeof(int) + sizeof(ugen_isoc_pkt_descr_t) * pktcount; - + len += pktlen * pktcnt; buf = malloc(len); if (!buf) { /* Error recovery. */ - } + } req = (ugen_isoc_req_head_t *)buf; req->req_isoc_pkts_count = pktcnt; @@ -1184,8 +1184,8 @@ endpoint: pktdesc[i].dsc_isoc_pkt_len = pktlen; pktdesc[i].dsc_isoc_pkt_actual_len = 0; pktdesc[i].dsc_isoc_pkt_status = 0; - } - + } + /* moving to beginning of payload data */ p = buf + sizeof(int) + sizeof(*pktdesc) * pktcnt; for (i = 0; i < pktcnt; i++) { @@ -1193,17 +1193,17 @@ endpoint: /* fill in the data buffer */ p += pktlen; - } + } /* - * write packet request information and data to ugen driver - * - * len should be the exact value of sizeof(int) + - * sizeof(ugen_isoc_pkt_descr_t) * pktcnt + payload length - */ + * write packet request information and data to ugen driver + * + * len should be the exact value of sizeof(int) + + * sizeof(ugen_isoc_pkt_descr_t) * pktcnt + payload length + */ if (write(fd, buf, len) < 0) { /* Error recovery. */ - } + } /* read packet status */ if (read(fd, rdbuf, sizeof(*pktdesc) * pktcnt) < 0) { @@ -1214,7 +1214,7 @@ endpoint: /* Parse every packet's transfer status */ - } + } .fi .in -2 @@ -1655,7 +1655,7 @@ Architecture SPARC & x86, PCI-based systems .LP \fBclose\fR(2), \fBpoll\fR(2), \fBread\fR(2), \fBwrite\fR(2), \fBaioread\fR(3C), \fBaiowrite\fR(3C), \fBusba\fR(7D), -\fBusb_dev_descr\fR(9S). +\fBusb_dev_descr\fR(9S) .SH DIAGNOSTICS .LP In addition to being logged, the following messages may appear on the system diff --git a/usr/src/man/man7d/usbsksp.7d b/usr/src/man/man7d/usbsksp.7d index 80e23ae628..c0a946ae97 100644 --- a/usr/src/man/man7d/usbsksp.7d +++ b/usr/src/man/man7d/usbsksp.7d @@ -255,7 +255,7 @@ may be lost. .sp .ne 2 .na -\fBCannot access <\fIdevice\fR>. Please reconnect.\fR +\fBCannot access <\fR\fIdevice\fR\fB>. Please reconnect.\fR .ad .sp .6 .RS 4n diff --git a/usr/src/man/man7d/usbsprl.7d b/usr/src/man/man7d/usbsprl.7d index 7a9b3c5b64..6b66182f79 100644 --- a/usr/src/man/man7d/usbsprl.7d +++ b/usr/src/man/man7d/usbsprl.7d @@ -253,7 +253,7 @@ be lost. .sp .ne 2 .na -\fBCannot access <\fIdevice\fR>. Please reconnect.\fR +\fBCannot access <\fR\fIdevice\fR\fB>. Please reconnect.\fR .ad .sp .6 .RS 4n diff --git a/usr/src/man/man7d/virtualkm.7d b/usr/src/man/man7d/virtualkm.7d index 03d7535ff1..f5eb32a428 100644 --- a/usr/src/man/man7d/virtualkm.7d +++ b/usr/src/man/man7d/virtualkm.7d @@ -257,7 +257,7 @@ debugger mode. As a result, the keyboard is not available. .sp .ne 2 .na -\fBFailed to relink the mouse <\fIdevice_path\fR> underneath virtual mouse\fR +\fBFailed to relink the mouse <\fR\fIdevice_path\fR\fB> underneath virtual mouse\fR .ad .sp .6 .RS 4n diff --git a/usr/src/man/man7i/prnio.7i b/usr/src/man/man7i/prnio.7i index 2814f70083..30d4d4b9ce 100644 --- a/usr/src/man/man7i/prnio.7i +++ b/usr/src/man/man7i/prnio.7i @@ -164,7 +164,7 @@ followed by \fBPRNIOC_GET_IFCAP\fR. .RS 21n This command can be used to retrieve printer interface info string, which is an arbitrary format string usually describing the bus type. The argument is a -pointer to \fBstruct prn_interface_info\fR as described below.\f(CW\fR +pointer to \fBstruct prn_interface_info\fR as described below. .RE .sp diff --git a/usr/src/man/man7p/ipsecah.7p b/usr/src/man/man7p/ipsecah.7p index d6be1a76dc..428cc3ea90 100644 --- a/usr/src/man/man7p/ipsecah.7p +++ b/usr/src/man/man7p/ipsecah.7p @@ -68,5 +68,5 @@ Interface Stability Committed \fBipsecesp\fR(7P) .sp .LP -Kent, S. and Atkinson, R.\fIRFC 2402, IP Authentication Header\fR, The Internet -Society, 1998. +Kent, S. and Atkinson, R. \fIRFC 2402, IP Authentication Header\fR, The +Internet Society, 1998. diff --git a/usr/src/man/man7p/ipsecesp.7p b/usr/src/man/man7p/ipsecesp.7p index d3974f8612..9123e58bc9 100644 --- a/usr/src/man/man7p/ipsecesp.7p +++ b/usr/src/man/man7p/ipsecesp.7p @@ -77,5 +77,5 @@ Interface Stability Evolving \fBgetipsecalgbyname\fR(3NSL), \fBip\fR(7P), \fBipsec\fR(7P), \fBipsecah\fR(7P) .sp .LP -Kent, S. and Atkinson, R.\fIRFC 2406, IP Encapsulating Security Payload +Kent, S. and Atkinson, R. \fIRFC 2406, IP Encapsulating Security Payload (ESP)\fR, The Internet Society, 1998. diff --git a/usr/src/man/man9f/WR.9f b/usr/src/man/man9f/WR.9f index 1b2651a020..57c40abd5e 100644 --- a/usr/src/man/man9f/WR.9f +++ b/usr/src/man/man9f/WR.9f @@ -69,7 +69,7 @@ module-specific data structure for the minor device. 4 { 5 q->q_ptr = NULL; 6 WR(q)->q_ptr = NULL; - . . . + ... 7 } .fi .in -2 diff --git a/usr/src/man/man9f/copyin.9f b/usr/src/man/man9f/copyin.9f index 9d23b29426..f892cf6fe2 100644 --- a/usr/src/man/man9f/copyin.9f +++ b/usr/src/man/man9f/copyin.9f @@ -123,7 +123,7 @@ returned. 6 }; 7 8 extern struct device xx_addr[]; /* phys. device regs. location */ - 9 . . . + 9 ... 10 xx_ioctl(dev_t dev, int cmd, int arg, int mode, 11 cred_t *cred_p, int *rval_p) 12 ... @@ -162,7 +162,7 @@ Stability Level Obsolete .sp .LP \fBattributes\fR(5), \fBioctl\fR(9E), \fBbcopy\fR(9F), \fBcopyout\fR(9F), -\fBddi_copyin\fR(9F), \fBddi_copyout\fR(9F), \fBuiomove\fR(9F). +\fBddi_copyin\fR(9F), \fBddi_copyout\fR(9F), \fBuiomove\fR(9F) .sp .LP \fIWriting Device Drivers\fR diff --git a/usr/src/man/man9f/copyout.9f b/usr/src/man/man9f/copyout.9f index bf6407ddad..a994d8b50e 100644 --- a/usr/src/man/man9f/copyout.9f +++ b/usr/src/man/man9f/copyout.9f @@ -121,7 +121,7 @@ returned. 6 }; 7 8 extern struct device xx_addr[]; /* phys. device regs. location */ - 9 . . . + 9 ... 10 xx_ioctl(dev_t dev, int cmd, int arg, int mode, 11 cred_t *cred_p, int *rval_p) 12 ... diff --git a/usr/src/man/man9f/ddi_copyin.9f b/usr/src/man/man9f/ddi_copyin.9f index c0c9406881..a8c5cf3d98 100644 --- a/usr/src/man/man9f/ddi_copyin.9f +++ b/usr/src/man/man9f/ddi_copyin.9f @@ -140,7 +140,7 @@ specified argument contains an invalid address, an error code is returned. 7 struct device_state { 8 volatile struct device *regsp; /* pointer to device registers */ 9 kmutex_t reg_mutex; /* protect device registers */ - . . . + ... 10 }; 11 static void *statep; /* for soft state routines */ @@ -158,7 +158,7 @@ specified argument contains an invalid address, an error code is returned. 21 if (sp == NULL) 22 return (ENXIO); 23 rp = sp->regsp; - . . . + ... 24 switch (cmd) { 25 case XX_GETREGS: /* copy data to temp. regs. buf */ diff --git a/usr/src/man/man9f/ddi_copyout.9f b/usr/src/man/man9f/ddi_copyout.9f index c766287a9d..0a199e7bbf 100644 --- a/usr/src/man/man9f/ddi_copyout.9f +++ b/usr/src/man/man9f/ddi_copyout.9f @@ -141,7 +141,7 @@ specified argument contains an invalid address, an error code is returned. 7 struct device_state { 8 volatile struct device *regsp; /* pointer to device registers */ 9 kmutex_t reg_mutex; /* protect device registers */ - . . . + ... 10 }; 11 static void *statep; /* for soft state routines */ @@ -159,7 +159,7 @@ specified argument contains an invalid address, an error code is returned. 21 if (sp == NULL) 22 return (ENXIO); 23 rp = sp->regsp; - . . . + ... 24 switch (cmd) { 25 case XX_GETREGS: /* copy registers to arg */ diff --git a/usr/src/man/man9f/delay.9f b/usr/src/man/man9f/delay.9f index 22e6ab2674..29c317d48d 100644 --- a/usr/src/man/man9f/delay.9f +++ b/usr/src/man/man9f/delay.9f @@ -74,15 +74,15 @@ displayed on the system console (line 14). The driver waits an allotted time 5 }; 6 7 - . . . - 9 /* get device registers */ + ... + 9 /* get device registers */ 10 register struct device *rp = ... 11 -12 while (rp->status & NOPAPER) { /* while printer is out of paper */ -13 /* display message and ring bell */ - /* on system console */ +12 while (rp->status & NOPAPER) { /* while printer is out of paper */ +13 /* display message and ring bell */ + /* on system console */ 14 cmn_err(CE_WARN, "^\e007", -15 (getminor(dev) & 0xf)); +15 (getminor(dev) & 0xf)); 16 /* wait one minute and try again */ 17 delay(60 * drv_usectohz(1000000)); 18 } diff --git a/usr/src/man/man9f/flushq.9f b/usr/src/man/man9f/flushq.9f index 27117aceb4..7c1926aa0c 100644 --- a/usr/src/man/man9f/flushq.9f +++ b/usr/src/man/man9f/flushq.9f @@ -103,7 +103,7 @@ for drivers. 13 flushq(q, FLUSHALL); 14 putnext(q, mp); 15 break; - . . . + ... 16 } 17 } .fi diff --git a/usr/src/man/man9f/gld.9f b/usr/src/man/man9f/gld.9f index 3f3949d79c..073f27f3d6 100644 --- a/usr/src/man/man9f/gld.9f +++ b/usr/src/man/man9f/gld.9f @@ -298,7 +298,7 @@ on failure. .sp .LP \fBgld\fR(7D), \fBgld\fR(9E), \fBgld_mac_info\fR(9S), \fBgld_stats\fR(9S), -\fBdlpi\fR(7P), \fBattach\fR(9E), \fBddi_add_intr\fR(9F). +\fBdlpi\fR(7P), \fBattach\fR(9E), \fBddi_add_intr\fR(9F) .sp .LP \fIWriting Device Drivers\fR diff --git a/usr/src/man/man9f/insq.9f b/usr/src/man/man9f/insq.9f index c11b3745d3..481a21370a 100644 --- a/usr/src/man/man9f/insq.9f +++ b/usr/src/man/man9f/insq.9f @@ -112,7 +112,7 @@ queue, \fBbp\fR will be \fINULL\fR and we fall out of the \fBfor\fR loop (line 28 (void)insq(q, bp, mp); 29 /* End of region that must be protected */ 30 break; - . . . + ... 31 } 32 } 33 } diff --git a/usr/src/man/man9f/ldi_prop_get_int.9f b/usr/src/man/man9f/ldi_prop_get_int.9f index 789cc63846..90c2606ac6 100644 --- a/usr/src/man/man9f/ldi_prop_get_int.9f +++ b/usr/src/man/man9f/ldi_prop_get_int.9f @@ -199,7 +199,7 @@ The following example demonstrates the use of ldi_prop_get_int64(). .sp .LP \fBddi_prop_get_int\fR(9F), \fBddi_prop_get_int64\fR(9F), -\fBldi_prop_exists\fR(9F). +\fBldi_prop_exists\fR(9F) .sp .LP \fIWriting Device Drivers\fR diff --git a/usr/src/man/man9f/net_getlifaddr.9f b/usr/src/man/man9f/net_getlifaddr.9f index 4681535e00..9ea110383d 100644 --- a/usr/src/man/man9f/net_getlifaddr.9f +++ b/usr/src/man/man9f/net_getlifaddr.9f @@ -178,4 +178,4 @@ Interface Stability Committed .sp .LP \fBnet_lifgetnext\fR(9F), \fBnet_phylookup\fR(9F), -\fBnet_phygetnext\fR(9F)\fBnet_protocol_lookup\fR(9F) +\fBnet_phygetnext\fR(9F), \fBnet_protocol_lookup\fR(9F) diff --git a/usr/src/man/man9f/pullupmsg.9f b/usr/src/man/man9f/pullupmsg.9f index 3eb7a20dec..ce7592e23f 100644 --- a/usr/src/man/man9f/pullupmsg.9f +++ b/usr/src/man/man9f/pullupmsg.9f @@ -101,7 +101,7 @@ processing messages on the queue. 23 } 24 freemsg(mp); 25 break; - . . . + ... 26 } 27 } 28 } diff --git a/usr/src/man/man9f/qreply.9f b/usr/src/man/man9f/qreply.9f index 03ae199558..c7c882d361 100644 --- a/usr/src/man/man9f/qreply.9f +++ b/usr/src/man/man9f/qreply.9f @@ -87,7 +87,7 @@ bit is off, then the message is freed (line 15). See the example for 15 freemsg(mp); 16 } 17 break; - . . . + ... 18 } 19 } .fi diff --git a/usr/src/man/man9f/testb.9f b/usr/src/man/man9f/testb.9f index b302c4721f..b02c1ac6e9 100644 --- a/usr/src/man/man9f/testb.9f +++ b/usr/src/man/man9f/testb.9f @@ -90,13 +90,13 @@ the amount of time spent in a \fBtimeout()\fR routine. 3 { 4 mblk_t *mp; 5 mblk_t *nmp; - . . . + ... 6 if ((nmp = copymsg(mp)) == NULL) { 7 putbq(q, mp); 8 timeout(tryagain, (intptr_t)q, drv_usectohz(100000)); 9 return; 10 } - . . . + ... 11 } 12 13 tryagain(q) diff --git a/usr/src/man/man9f/usb_get_max_pkts_per_isoc_request.9f b/usr/src/man/man9f/usb_get_max_pkts_per_isoc_request.9f index 021b94c58e..ce423b652f 100644 --- a/usr/src/man/man9f/usb_get_max_pkts_per_isoc_request.9f +++ b/usr/src/man/man9f/usb_get_max_pkts_per_isoc_request.9f @@ -116,5 +116,5 @@ Interface stability Committed .SH SEE ALSO .LP \fBattributes\fR(5), \fBusb_pipe_isoc_xfer\fR(9F), \fBusb_alloc_request\fR(9F), -\fBusb_get_current_frame_number\fR(9F). \fBusb_ep_descr\fR(9S), +\fBusb_get_current_frame_number\fR(9F), \fBusb_ep_descr\fR(9S), \fBusb_isoc_request\fR(9S) diff --git a/usr/src/man/man9f/usb_pipe_ctrl_xfer.9f b/usr/src/man/man9f/usb_pipe_ctrl_xfer.9f index ca9e7a9300..9e8f057b58 100644 --- a/usr/src/man/man9f/usb_pipe_ctrl_xfer.9f +++ b/usr/src/man/man9f/usb_pipe_ctrl_xfer.9f @@ -449,7 +449,7 @@ Interface stability Committed .SH SEE ALSO .LP \fBattributes\fR(5), \fBusb_alloc_request\fR(9F), \fBusb_get_cfg\fR(9F), -\fBusb_get_status\fR(9F). \fBusb_pipe_bulk_xfer\fR(9F), +\fBusb_get_status\fR(9F), \fBusb_pipe_bulk_xfer\fR(9F), \fBusb_pipe_intr_xfer\fR(9F), \fBusb_pipe_isoc_xfer\fR(9F), \fBusb_pipe_xopen\fR(9F), \fBusb_pipe_reset\fR(9F), \fBusb_pipe_get_state\fR(9F), \fBusb_bulk_request\fR(9S), diff --git a/usr/src/man/man9f/usb_pipe_get_state.9f b/usr/src/man/man9f/usb_pipe_get_state.9f index 2f704f166d..a236d6649e 100644 --- a/usr/src/man/man9f/usb_pipe_get_state.9f +++ b/usr/src/man/man9f/usb_pipe_get_state.9f @@ -170,6 +170,7 @@ Interface stability Committed .SH SEE ALSO .LP -\fBattributes\fR(5), \fBusb_clr_feature\fR(9F), \fBusb_get_cfg\fR(9F). +\fBattributes\fR(5), \fBusb_clr_feature\fR(9F), \fBusb_get_cfg\fR(9F), \fBusb_get_status\fR(9F), \fBusb_pipe_close\fR(9F), -\fBusb_pipe_ctrl_xfer\fR(9F), \fBusb_pipe_xopen\fR(9F). \fBusb_pipe_reset\fR(9F) +\fBusb_pipe_ctrl_xfer\fR(9F), \fBusb_pipe_xopen\fR(9F), +\fBusb_pipe_reset\fR(9F) diff --git a/usr/src/man/man9f/usb_reset_device.9f b/usr/src/man/man9f/usb_reset_device.9f index acf2a0244f..d094450d30 100644 --- a/usr/src/man/man9f/usb_reset_device.9f +++ b/usr/src/man/man9f/usb_reset_device.9f @@ -272,7 +272,7 @@ WARNING: \fIdev_path\fR hubd\fIinstance_num\fR \fIdriver_name\fR Error message . .sp .ne 2 .na -\fB\fIdriver_name\fR \fIinstance_num\fR is under bus power management, cannot +\fIdriver_name instance_num\fR \fBis under bus power management, cannot be reset. Please disconnect and reconnect this device.\fR .ad .sp .6 @@ -285,7 +285,7 @@ reconnect it to system. .sp .ne 2 .na -\fBTime out when resetting the device \fIdriver_name\fR \fIinstance_num\fR. +\fBTime out when resetting the device\fR \fIdriver_name instance_num\fR\fB. Please disconnect and reconnect it to system.\fR .ad .sp .6 @@ -298,7 +298,7 @@ while and reconnect it to system. .sp .ne 2 .na -\fB\fIdriver_name\fR \fIinstance_num\fR cannot be reset due to other +\fIdriver_name instance_num\fR \fBcannot be reset due to other applications are using it, please first close these applications, then disconnect and reconnect the device.\fR .ad diff --git a/usr/src/man/man9s/usb_completion_reason.9s b/usr/src/man/man9s/usb_completion_reason.9s index d6be41b8a1..1a9626f6bb 100644 --- a/usr/src/man/man9s/usb_completion_reason.9s +++ b/usr/src/man/man9s/usb_completion_reason.9s @@ -259,4 +259,4 @@ Interface stability Committed \fBusb_pipe_ctrl_xfer\fR(9F), \fBusb_pipe_intr_xfer\fR(9F), \fBusb_pipe_isoc_xfer\fR(9F), \fBusb_bulk_request\fR(9S), \fBusb_ctrl_request\fR(9S), \fBusb_intr_request\fR(9S), -\fBusb_isoc_request\fR(9S). +\fBusb_isoc_request\fR(9S) diff --git a/usr/src/man/man9s/usb_dev_qlf_descr.9s b/usr/src/man/man9s/usb_dev_qlf_descr.9s index 468164d9d1..997c72606c 100644 --- a/usr/src/man/man9s/usb_dev_qlf_descr.9s +++ b/usr/src/man/man9s/usb_dev_qlf_descr.9s @@ -84,7 +84,7 @@ Interface stability Committed .sp .LP \fBattributes\fR(5), \fBusb_get_alt_if\fR(9F), \fBusb_get_cfg\fR(9F), -\fBusb_get_dev_data\fR(9F), \fBusb_get_string_descr\fR(9F). +\fBusb_get_dev_data\fR(9F), \fBusb_get_string_descr\fR(9F), \fBusb_parse_data\fR(9F), \fBusb_ctrl_request\fR(9S), \fBusb_cfg_descr\fR(9S), \fBusb_dev_descr\fR(9S), \fBusb_ep_descr\fR(9S), \fBusb_if_descr\fR(9S), \fBusb_other_speed_cfg_descr\fR(9S), \fBusb_string_descr\fR(9S) diff --git a/usr/src/pkg/manifests/system-test-zfstest.mf b/usr/src/pkg/manifests/system-test-zfstest.mf index f1b43d56bc..b955be4edb 100644 --- a/usr/src/pkg/manifests/system-test-zfstest.mf +++ b/usr/src/pkg/manifests/system-test-zfstest.mf @@ -10,9 +10,9 @@ # # -# Copyright (c) 2012, 2016 by Delphix. All rights reserved. +# Copyright (c) 2012, 2017 by Delphix. All rights reserved. +# Copyright 2015, 2016 Nexenta Systems, Inc. All rights reserved. # Copyright 2016, OmniTI Computer Consulting, Inc. All rights reserved. -# Copyright 2016 Nexenta Systems, Inc. # set name=pkg.fmri value=pkg:/system/test/zfstest@$(PKGVERS) @@ -457,6 +457,12 @@ file \ path=opt/zfs-tests/tests/functional/channel_program/lua_core/tst.recursive_pos \ mode=0555 file \ + path=opt/zfs-tests/tests/functional/channel_program/lua_core/tst.return_large \ + mode=0555 +file \ + path=opt/zfs-tests/tests/functional/channel_program/lua_core/tst.return_large.zcp \ + mode=0444 +file \ path=opt/zfs-tests/tests/functional/channel_program/lua_core/tst.return_nvlist_neg \ mode=0555 file \ @@ -555,6 +561,36 @@ file \ file \ path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.promote_simple \ mode=0555 +file \ + path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.rollback_mult \ + mode=0555 +file \ + path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.rollback_one \ + mode=0555 +file \ + path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_destroy \ + mode=0555 +file \ + path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_destroy.zcp \ + mode=0444 +file \ + path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_neg \ + mode=0555 +file \ + path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_neg.zcp \ + mode=0444 +file \ + path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_recursive \ + mode=0555 +file \ + path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_recursive.zcp \ + mode=0444 +file \ + path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_simple \ + mode=0555 +file \ + path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_simple.zcp \ + mode=0444 $(i386_ONLY)file path=opt/zfs-tests/tests/functional/checksum/edonr_test.amd64 \ mode=0555 $(i386_ONLY)file path=opt/zfs-tests/tests/functional/checksum/edonr_test.i386 \ diff --git a/usr/src/test/zfs-tests/tests/functional/channel_program/lua_core/tst.return_large.ksh b/usr/src/test/zfs-tests/tests/functional/channel_program/lua_core/tst.return_large.ksh new file mode 100644 index 0000000000..369ad846a0 --- /dev/null +++ b/usr/src/test/zfs-tests/tests/functional/channel_program/lua_core/tst.return_large.ksh @@ -0,0 +1,54 @@ +#!/bin/ksh -p +# +# This file and its contents are supplied under the terms of the +# Common Development and Distribution License ("CDDL"), version 1.0. +# You may only use this file in accordance with the terms of version +# 1.0 of the CDDL. +# +# A full copy of the text of the CDDL should have accompanied this +# source. A copy of the CDDL is also available via the Internet at +# http://www.illumos.org/license/CDDL. +# + +# +# Copyright (c) 2016, 2017 by Delphix. All rights reserved. +# + +. $STF_SUITE/tests/functional/channel_program/channel_common.kshlib + +# +# DESCRIPTION: Returning very large (up to the memory limit) lists should +# function correctly. +# + +verify_runnable "global" + +fs=$TESTPOOL/$TESTFS/testchild + +function cleanup +{ + datasetexists $fs && log_must zfs destroy -R $fs +} + +log_onexit cleanup + +log_must zfs create $fs + +# +# Actually checking in the ~500kb expected result of this program would be +# awful, so we just make sure it was as long as we expected. +# +output_lines=$(log_must zfs program $TESTPOOL \ + $ZCP_ROOT/lua_core/tst.return_large.zcp | wc -l) + +[[ $output_lines -lt 5000 ]] && + log_fail "Expected return of full list but only got $output_lines lines" + +# +# Make sure we fail if the return is over the memory limit +# +log_mustnot_program $TESTPOOL -m 10000 \ + $ZCP_ROOT/lua_core/tst.return_large.zcp + +log_pass "Large return values work properly" + diff --git a/usr/src/test/zfs-tests/tests/functional/channel_program/lua_core/tst.return_large.zcp b/usr/src/test/zfs-tests/tests/functional/channel_program/lua_core/tst.return_large.zcp new file mode 100644 index 0000000000..0ea9f8930e --- /dev/null +++ b/usr/src/test/zfs-tests/tests/functional/channel_program/lua_core/tst.return_large.zcp @@ -0,0 +1,24 @@ +-- +-- This file and its contents are supplied under the terms of the +-- Common Development and Distribution License ("CDDL"), version 1.0. +-- You may only use this file in accordance with the terms of version +-- 1.0 of the CDDL. +-- +-- A full copy of the text of the CDDL should have accompanied this +-- source. A copy of the CDDL is also available via the Internet at +-- http://www.illumos.org/license/CDDL. +-- + +-- +-- Copyright (c) 2016, 2017 by Delphix. All rights reserved. +-- + +basestring = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" .. + "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" + +ret = {} +for i=1,5000 do + table.insert(ret, basestring) +end + +return ret diff --git a/usr/src/test/zfs-tests/tests/functional/channel_program/synctask_core/tst.rollback_mult.ksh b/usr/src/test/zfs-tests/tests/functional/channel_program/synctask_core/tst.rollback_mult.ksh new file mode 100644 index 0000000000..778abc09dd --- /dev/null +++ b/usr/src/test/zfs-tests/tests/functional/channel_program/synctask_core/tst.rollback_mult.ksh @@ -0,0 +1,61 @@ +#!/bin/ksh -p +# +# This file and its contents are supplied under the terms of the +# Common Development and Distribution License ("CDDL"), version 1.0. +# You may only use this file in accordance with the terms of version +# 1.0 of the CDDL. +# +# A full copy of the text of the CDDL should have accompanied this +# source. A copy of the CDDL is also available via the Internet at +# http://www.illumos.org/license/CDDL. +# + +# +# Copyright (c) 2016, 2017 by Delphix. All rights reserved. +# + +. $STF_SUITE/tests/functional/channel_program/channel_common.kshlib + +verify_runnable "global" +snap1=$TESTPOOL/$TESTFS@$TESTSNAP1 +snap2=$TESTPOOL/$TESTFS@$TESTSNAP2 +fs=$TESTPOOL/$TESTFS +file=$TESTDIR/$TESTFILE0 + +function cleanup +{ + datasetexists $snap1 && log_must zfs destroy $snap1 && \ + log_must rm $file +} + +log_onexit cleanup + +log_must mkfile 128b $file +create_snapshot $TESTPOOL/$TESTFS $TESTSNAP1 +log_must rm $file +create_snapshot $TESTPOOL/$TESTFS $TESTSNAP2 + +log_must snapexists $snap1 +log_must snapexists $snap2 +log_must zfs unmount $fs + +log_must_program $TESTPOOL - $fs $snap2 <<-EOF + arg = ... + fs = arg["argv"][1] + snap = arg["argv"][2] + err = zfs.sync.rollback(fs) + if err == 0 then + err = zfs.sync.destroy(snap) + end + if err == 0 then + err = zfs.sync.rollback(fs) + end + msg = "rolling back " .. fs .. " err=" .. err + return msg +EOF + +log_must zfs mount $fs +log_must [ -f $file ] +log_mustnot snapexists $snap2 + +log_pass "Rolling back snapshot with channel program works." diff --git a/usr/src/test/zfs-tests/tests/functional/channel_program/synctask_core/tst.rollback_one.ksh b/usr/src/test/zfs-tests/tests/functional/channel_program/synctask_core/tst.rollback_one.ksh new file mode 100644 index 0000000000..2a8e83913b --- /dev/null +++ b/usr/src/test/zfs-tests/tests/functional/channel_program/synctask_core/tst.rollback_one.ksh @@ -0,0 +1,51 @@ +#!/bin/ksh -p +# +# This file and its contents are supplied under the terms of the +# Common Development and Distribution License ("CDDL"), version 1.0. +# You may only use this file in accordance with the terms of version +# 1.0 of the CDDL. +# +# A full copy of the text of the CDDL should have accompanied this +# source. A copy of the CDDL is also available via the Internet at +# http://www.illumos.org/license/CDDL. +# + +# +# Copyright (c) 2016, 2017 by Delphix. All rights reserved. +# + +. $STF_SUITE/tests/functional/channel_program/channel_common.kshlib + +verify_runnable "global" +snap=$TESTPOOL/$TESTFS@$TESTSNAP +fs=$TESTPOOL/$TESTFS +file=$TESTDIR/$TESTFILE0 + +function cleanup +{ + datasetexists $snap && log_must zfs destroy $snap && \ + log_must rm $file + +} + +log_onexit cleanup + +log_must mkfile 128b $file +create_snapshot $TESTPOOL/$TESTFS $TESTSNAP +log_must rm $file + +log_must snapexists $snap +log_must zfs unmount $fs + +log_must_program $TESTPOOL - $fs <<-EOF + arg = ... + fs = arg["argv"][1] + err = zfs.sync.rollback(fs) + msg = "rolling back " .. fs .. " err=" .. err + return msg +EOF + +log_must zfs mount $fs +log_must [ -f $file ] + +log_pass "Rolling back snapshot with channel program works." diff --git a/usr/src/test/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_destroy.ksh b/usr/src/test/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_destroy.ksh new file mode 100644 index 0000000000..98317db6e6 --- /dev/null +++ b/usr/src/test/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_destroy.ksh @@ -0,0 +1,39 @@ +#!/bin/ksh -p +# +# This file and its contents are supplied under the terms of the +# Common Development and Distribution License ("CDDL"), version 1.0. +# You may only use this file in accordance with the terms of version +# 1.0 of the CDDL. +# +# A full copy of the text of the CDDL should have accompanied this +# source. A copy of the CDDL is also available via the Internet at +# http://www.illumos.org/license/CDDL. +# + +# +# Copyright (c) 2016, 2017 by Delphix. All rights reserved. +# + +. $STF_SUITE/tests/functional/channel_program/channel_common.kshlib + +# +# DESCRIPTION: Creating and destroying snapshots in the same txg should work. +# + +verify_runnable "global" + +fs=$TESTPOOL/$TESTFS/testchild + +function cleanup +{ + datasetexists $fs && log_must zfs destroy -R $fs +} + +log_onexit cleanup + +log_must zfs create $fs + +log_must_program $TESTPOOL \ + $ZCP_ROOT/synctask_core/tst.snapshot_destroy.zcp $fs + +log_pass "Creating/destroying snapshots in one channel program works" diff --git a/usr/src/test/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_destroy.zcp b/usr/src/test/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_destroy.zcp new file mode 100644 index 0000000000..6fbfb06ad4 --- /dev/null +++ b/usr/src/test/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_destroy.zcp @@ -0,0 +1,24 @@ +-- +-- This file and its contents are supplied under the terms of the +-- Common Development and Distribution License ("CDDL"), version 1.0. +-- You may only use this file in accordance with the terms of version +-- 1.0 of the CDDL. +-- +-- A full copy of the text of the CDDL should have accompanied this +-- source. A copy of the CDDL is also available via the Internet at +-- http://www.illumos.org/license/CDDL. +-- + +-- +-- Copyright (c) 2016, 2017 by Delphix. All rights reserved. +-- + +args = ... +argv = args["argv"] + +assert(zfs.sync.snapshot(argv[1] .. "@snap1") == 0) +assert(zfs.sync.destroy(argv[1] .. "@snap1") == 0) + +for s in zfs.list.snapshots(argv[1]) do + assert(false) +end diff --git a/usr/src/test/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_neg.ksh b/usr/src/test/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_neg.ksh new file mode 100644 index 0000000000..c3585c9386 --- /dev/null +++ b/usr/src/test/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_neg.ksh @@ -0,0 +1,44 @@ +#!/bin/ksh -p +# +# This file and its contents are supplied under the terms of the +# Common Development and Distribution License ("CDDL"), version 1.0. +# You may only use this file in accordance with the terms of version +# 1.0 of the CDDL. +# +# A full copy of the text of the CDDL should have accompanied this +# source. A copy of the CDDL is also available via the Internet at +# http://www.illumos.org/license/CDDL. +# + +# +# Copyright (c) 2016, 2017 by Delphix. All rights reserved. +# + +. $STF_SUITE/tests/functional/channel_program/channel_common.kshlib + +# +# DESCRIPTION: Check various invalid snapshot error cases +# + +verify_runnable "global" + +fs1=$TESTPOOL/$TESTFS/testchild1 +fs2=$TESTPOOL/$TESTFS/testchild2 + +function cleanup +{ + for fs in $fs1 $fs2; do + datasetexists $fs && log_must zfs destroy -R $fs + done +} + +log_onexit cleanup + +log_must zfs create $fs1 +log_must zfs create $fs2 +log_must zfs snapshot $fs1@snap1 + +log_must_program $TESTPOOL $ZCP_ROOT/synctask_core/tst.snapshot_neg.zcp $fs1 $fs2 + +log_pass "zfs.sync.snapshot returns correct errors on invalid input" + diff --git a/usr/src/test/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_neg.zcp b/usr/src/test/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_neg.zcp new file mode 100644 index 0000000000..5cae324bc9 --- /dev/null +++ b/usr/src/test/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_neg.zcp @@ -0,0 +1,35 @@ +-- +-- This file and its contents are supplied under the terms of the +-- Common Development and Distribution License ("CDDL"), version 1.0. +-- You may only use this file in accordance with the terms of version +-- 1.0 of the CDDL. +-- +-- A full copy of the text of the CDDL should have accompanied this +-- source. A copy of the CDDL is also available via the Internet at +-- http://www.illumos.org/license/CDDL. +-- + +-- +-- Copyright (c) 2016, 2017 by Delphix. All rights reserved. +-- + +args = ... +argv = args["argv"] +fs1 = argv[1] +fs2 = argv[2] + +longstring = "a" +for i=1,9 do + longstring = longstring .. longstring +end + +-- invalid snapshot names +assert(zfs.sync.snapshot("ceci_nest_pas_une_dataset") == EINVAL); +assert(zfs.sync.snapshot(fs1) == EINVAL) +assert(zfs.sync.snapshot(fs1 .. "@" .. longstring) == ENAMETOOLONG) + +assert(zfs.sync.snapshot(fs2 .. "@snap1") == 0) +-- only one snapshot of a filesystem is allowed per TXG. +assert(zfs.sync.snapshot(fs2 .. "@snap2") == EAGAIN) +-- snapshot already exists +assert(zfs.sync.snapshot(fs1 .. "@snap1") == EEXIST) diff --git a/usr/src/test/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_recursive.ksh b/usr/src/test/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_recursive.ksh new file mode 100644 index 0000000000..c0180d90c4 --- /dev/null +++ b/usr/src/test/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_recursive.ksh @@ -0,0 +1,61 @@ +#!/bin/ksh -p +# +# This file and its contents are supplied under the terms of the +# Common Development and Distribution License ("CDDL"), version 1.0. +# You may only use this file in accordance with the terms of version +# 1.0 of the CDDL. +# +# A full copy of the text of the CDDL should have accompanied this +# source. A copy of the CDDL is also available via the Internet at +# http://www.illumos.org/license/CDDL. +# + +# +# Copyright (c) 2016, 2017 by Delphix. All rights reserved. +# + +. $STF_SUITE/tests/functional/channel_program/channel_common.kshlib + +# +# DESCRIPTION: Construct a set of nested filesystems, then recursively snapshot +# all of them. +# + +verify_runnable "global" + +rootfs=$TESTPOOL/$TESTFS/root +snapname=snap + +function cleanup +{ + datasetexists $rootfs && log_must zfs destroy -R $rootfs +} + +log_onexit cleanup + +filesystems="$rootfs \ +$rootfs/child1 \ +$rootfs/child1/subchild1 \ +$rootfs/child1/subchild2 \ +$rootfs/child1/subchild3 \ +$rootfs/child2 \ +$rootfs/child2/subchild4 \ +$rootfs/child2/subchild5" + +for fs in $filesystems; do + log_must zfs create $fs +done + +log_must_program $TESTPOOL \ + $ZCP_ROOT/synctask_core/tst.snapshot_recursive.zcp $rootfs $snapname + +# +# Make sure all of the snapshots we expect were created. +# +for fs in $filesystems; do + log_must snapexists $fs@$snapname +done + +log_pass "Recursively snapshotting multiple filesystems works." + + diff --git a/usr/src/test/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_recursive.zcp b/usr/src/test/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_recursive.zcp new file mode 100644 index 0000000000..097940d711 --- /dev/null +++ b/usr/src/test/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_recursive.zcp @@ -0,0 +1,28 @@ +-- +-- This file and its contents are supplied under the terms of the +-- Common Development and Distribution License ("CDDL"), version 1.0. +-- You may only use this file in accordance with the terms of version +-- 1.0 of the CDDL. +-- +-- A full copy of the text of the CDDL should have accompanied this +-- source. A copy of the CDDL is also available via the Internet at +-- http://www.illumos.org/license/CDDL. +-- + +-- +-- Copyright (c) 2016, 2017 by Delphix. All rights reserved. +-- + +args = ... +argv = args["argv"] +fs = argv[1] +snap = argv[2] + +function snapshot_recursive(root) + assert(zfs.sync.snapshot(root .. "@" .. snap) == 0) + for child in zfs.list.children(root) do + snapshot_recursive(child) + end +end + +snapshot_recursive(fs) diff --git a/usr/src/test/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_simple.ksh b/usr/src/test/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_simple.ksh new file mode 100644 index 0000000000..e818ce9fcb --- /dev/null +++ b/usr/src/test/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_simple.ksh @@ -0,0 +1,40 @@ +#!/bin/ksh -p +# +# This file and its contents are supplied under the terms of the +# Common Development and Distribution License ("CDDL"), version 1.0. +# You may only use this file in accordance with the terms of version +# 1.0 of the CDDL. +# +# A full copy of the text of the CDDL should have accompanied this +# source. A copy of the CDDL is also available via the Internet at +# http://www.illumos.org/license/CDDL. +# + +# +# Copyright (c) 2016, 2017 by Delphix. All rights reserved. +# + +. $STF_SUITE/tests/functional/channel_program/channel_common.kshlib + +# +# DESCRIPTION: Make sure basic snapshot functionality works in channel programs +# + +verify_runnable "global" + +fs=$TESTPOOL/$TESTFS/testchild +snapname=testsnap + +function cleanup +{ + datasetexists $fs && log_must zfs destroy -R $fs +} + +log_onexit cleanup + +log_must zfs create $fs + +log_must_program $TESTPOOL \ + $ZCP_ROOT/synctask_core/tst.snapshot_simple.zcp $fs $snapname + +log_pass "Simple snapshotting works" diff --git a/usr/src/test/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_simple.zcp b/usr/src/test/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_simple.zcp new file mode 100644 index 0000000000..215e013df1 --- /dev/null +++ b/usr/src/test/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_simple.zcp @@ -0,0 +1,26 @@ +-- +-- This file and its contents are supplied under the terms of the +-- Common Development and Distribution License ("CDDL"), version 1.0. +-- You may only use this file in accordance with the terms of version +-- 1.0 of the CDDL. +-- +-- A full copy of the text of the CDDL should have accompanied this +-- source. A copy of the CDDL is also available via the Internet at +-- http://www.illumos.org/license/CDDL. +-- + +-- +-- Copyright (c) 2016, 2017 by Delphix. All rights reserved. +-- + +-- This program should be invoked as "zfs program <pool> <prog> <fs> <snap>" + +args = ... +argv = args["argv"] +assert(zfs.sync.snapshot(argv[1] .. "@" .. argv[2]) == 0) +snaps = {} +for s in zfs.list.snapshots(argv[1]) do + table.insert(snaps, s) +end +assert(#snaps == 1) +assert(snaps[1] == (argv[1] .. "@" .. argv[2])) diff --git a/usr/src/uts/common/fs/zfs/dsl_dataset.c b/usr/src/uts/common/fs/zfs/dsl_dataset.c index 5706965ffe..de16398e36 100644 --- a/usr/src/uts/common/fs/zfs/dsl_dataset.c +++ b/usr/src/uts/common/fs/zfs/dsl_dataset.c @@ -21,7 +21,7 @@ /* * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. - * Copyright (c) 2011, 2016 by Delphix. All rights reserved. + * Copyright (c) 2011, 2017 by Delphix. All rights reserved. * Copyright (c) 2014, Joyent, Inc. All rights reserved. * Copyright (c) 2014 RackTop Systems. * Copyright (c) 2014 Spectra Logic Corporation, All rights reserved. @@ -1081,13 +1081,6 @@ dsl_dataset_snapshot_reserve_space(dsl_dataset_t *ds, dmu_tx_t *tx) return (0); } -typedef struct dsl_dataset_snapshot_arg { - nvlist_t *ddsa_snaps; - nvlist_t *ddsa_props; - nvlist_t *ddsa_errors; - cred_t *ddsa_cr; -} dsl_dataset_snapshot_arg_t; - int dsl_dataset_snapshot_check_impl(dsl_dataset_t *ds, const char *snapname, dmu_tx_t *tx, boolean_t recv, uint64_t cnt, cred_t *cr) @@ -1147,7 +1140,7 @@ dsl_dataset_snapshot_check_impl(dsl_dataset_t *ds, const char *snapname, return (0); } -static int +int dsl_dataset_snapshot_check(void *arg, dmu_tx_t *tx) { dsl_dataset_snapshot_arg_t *ddsa = arg; @@ -1422,7 +1415,7 @@ dsl_dataset_snapshot_sync_impl(dsl_dataset_t *ds, const char *snapname, spa_history_log_internal_ds(ds->ds_prev, "snapshot", tx, ""); } -static void +void dsl_dataset_snapshot_sync(void *arg, dmu_tx_t *tx) { dsl_dataset_snapshot_arg_t *ddsa = arg; @@ -2452,14 +2445,7 @@ dsl_dataset_handoff_check(dsl_dataset_t *ds, void *owner, dmu_tx_t *tx) return (0); } -typedef struct dsl_dataset_rollback_arg { - const char *ddra_fsname; - const char *ddra_tosnap; - void *ddra_owner; - nvlist_t *ddra_result; -} dsl_dataset_rollback_arg_t; - -static int +int dsl_dataset_rollback_check(void *arg, dmu_tx_t *tx) { dsl_dataset_rollback_arg_t *ddra = arg; @@ -2567,7 +2553,7 @@ dsl_dataset_rollback_check(void *arg, dmu_tx_t *tx) return (0); } -static void +void dsl_dataset_rollback_sync(void *arg, dmu_tx_t *tx) { dsl_dataset_rollback_arg_t *ddra = arg; diff --git a/usr/src/uts/common/fs/zfs/sys/dsl_dataset.h b/usr/src/uts/common/fs/zfs/sys/dsl_dataset.h index 214d5919ff..f01c33aea8 100644 --- a/usr/src/uts/common/fs/zfs/sys/dsl_dataset.h +++ b/usr/src/uts/common/fs/zfs/sys/dsl_dataset.h @@ -20,7 +20,7 @@ */ /* * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. - * Copyright (c) 2011, 2015 by Delphix. All rights reserved. + * Copyright (c) 2011, 2017 by Delphix. All rights reserved. * Copyright (c) 2013, Joyent, Inc. All rights reserved. * Copyright (c) 2013 Steven Hartland. All rights reserved. * Copyright (c) 2014 Spectra Logic Corporation, All rights reserved. @@ -237,6 +237,20 @@ typedef struct dsl_dataset_promote_arg { cred_t *cr; } dsl_dataset_promote_arg_t; +typedef struct dsl_dataset_rollback_arg { + const char *ddra_fsname; + const char *ddra_tosnap; + void *ddra_owner; + nvlist_t *ddra_result; +} dsl_dataset_rollback_arg_t; + +typedef struct dsl_dataset_snapshot_arg { + nvlist_t *ddsa_snaps; + nvlist_t *ddsa_props; + nvlist_t *ddsa_errors; + cred_t *ddsa_cr; +} dsl_dataset_snapshot_arg_t; + /* * The max length of a temporary tag prefix is the number of hex digits * required to express UINT64_MAX plus one for the hyphen. @@ -269,6 +283,8 @@ uint64_t dsl_dataset_create_sync(dsl_dir_t *pds, const char *lastname, dsl_dataset_t *origin, uint64_t flags, cred_t *, dmu_tx_t *); uint64_t dsl_dataset_create_sync_dd(dsl_dir_t *dd, dsl_dataset_t *origin, uint64_t flags, dmu_tx_t *tx); +void dsl_dataset_snapshot_sync(void *arg, dmu_tx_t *tx); +int dsl_dataset_snapshot_check(void *arg, dmu_tx_t *tx); int dsl_dataset_snapshot(nvlist_t *snaps, nvlist_t *props, nvlist_t *errors); void dsl_dataset_promote_sync(void *arg, dmu_tx_t *tx); int dsl_dataset_promote_check(void *arg, dmu_tx_t *tx); @@ -375,6 +391,9 @@ void dsl_dataset_set_refreservation_sync_impl(dsl_dataset_t *ds, void dsl_dataset_zapify(dsl_dataset_t *ds, dmu_tx_t *tx); boolean_t dsl_dataset_is_zapified(dsl_dataset_t *ds); boolean_t dsl_dataset_has_resume_receive_state(dsl_dataset_t *ds); + +int dsl_dataset_rollback_check(void *arg, dmu_tx_t *tx); +void dsl_dataset_rollback_sync(void *arg, dmu_tx_t *tx); int dsl_dataset_rollback(const char *fsname, const char *tosnap, void *owner, nvlist_t *result); diff --git a/usr/src/uts/common/fs/zfs/sys/zcp.h b/usr/src/uts/common/fs/zfs/sys/zcp.h index 443b94e26d..2e4ad7aac5 100644 --- a/usr/src/uts/common/fs/zfs/sys/zcp.h +++ b/usr/src/uts/common/fs/zfs/sys/zcp.h @@ -14,7 +14,7 @@ */ /* - * Copyright (c) 2016 by Delphix. All rights reserved. + * Copyright (c) 2016, 2017 by Delphix. All rights reserved. */ #ifndef _SYS_ZCP_H @@ -137,8 +137,6 @@ typedef struct zcp_lib_info { const zcp_arg_t kwargs[2]; } zcp_lib_info_t; -int zcp_nvlist_to_lua(lua_State *, nvlist_t *, char *, int); - #ifdef __cplusplus } #endif diff --git a/usr/src/uts/common/fs/zfs/zcp.c b/usr/src/uts/common/fs/zfs/zcp.c index 7736deddef..3410fac1a4 100644 --- a/usr/src/uts/common/fs/zfs/zcp.c +++ b/usr/src/uts/common/fs/zfs/zcp.c @@ -14,7 +14,7 @@ */ /* - * Copyright (c) 2016 by Delphix. All rights reserved. + * Copyright (c) 2016, 2017 by Delphix. All rights reserved. */ /* @@ -102,10 +102,15 @@ #include <sys/zcp_global.h> #include <util/sscanf.h> +#define ZCP_NVLIST_MAX_DEPTH 20 + uint64_t zfs_lua_check_instrlimit_interval = 100; uint64_t zfs_lua_max_instrlimit = ZCP_MAX_INSTRLIMIT; uint64_t zfs_lua_max_memlimit = ZCP_MAX_MEMLIMIT; +/* + * Forward declarations for mutually recursive functions + */ static int zcp_nvpair_value_to_lua(lua_State *, nvpair_t *, char *, int); static int zcp_lua_to_nvlist_impl(lua_State *, int, nvlist_t *, const char *, int); @@ -213,8 +218,6 @@ zcp_cleanup(lua_State *state) } } -#define ZCP_NVLIST_MAX_DEPTH 20 - /* * Convert the lua table at the given index on the Lua stack to an nvlist * and return it. diff --git a/usr/src/uts/common/fs/zfs/zcp_global.c b/usr/src/uts/common/fs/zfs/zcp_global.c index efc1cf92d3..9a869a6012 100644 --- a/usr/src/uts/common/fs/zfs/zcp_global.c +++ b/usr/src/uts/common/fs/zfs/zcp_global.c @@ -14,7 +14,7 @@ */ /* - * Copyright (c) 2016 by Delphix. All rights reserved. + * Copyright (c) 2016, 2017 by Delphix. All rights reserved. */ #include <sys/zcp_global.h> @@ -62,7 +62,12 @@ static const zcp_errno_global_t errno_globals[] = { {"EPIPE", EPIPE}, {"EDOM", EDOM}, {"ERANGE", ERANGE}, + {"EDEADLK", EDEADLK}, + {"ENOLCK", ENOLCK}, + {"ECANCELED", ECANCELED}, + {"ENOTSUP", ENOTSUP}, {"EDQUOT", EDQUOT}, + {"ENAMETOOLONG", ENAMETOOLONG}, {NULL, NULL} }; diff --git a/usr/src/uts/common/fs/zfs/zcp_synctask.c b/usr/src/uts/common/fs/zfs/zcp_synctask.c index 2238281416..6ec3f71f62 100644 --- a/usr/src/uts/common/fs/zfs/zcp_synctask.c +++ b/usr/src/uts/common/fs/zfs/zcp_synctask.c @@ -14,7 +14,7 @@ */ /* - * Copyright (c) 2016 by Delphix. All rights reserved. + * Copyright (c) 2016, 2017 by Delphix. All rights reserved. */ #include "lua.h" @@ -39,10 +39,10 @@ typedef int (zcp_synctask_func_t)(lua_State *, boolean_t, nvlist_t *); typedef struct zcp_synctask_info { const char *name; zcp_synctask_func_t *func; - zfs_space_check_t space_check; - int blocks_modified; const zcp_arg_t pargs[4]; const zcp_arg_t kwargs[2]; + zfs_space_check_t space_check; + int blocks_modified; } zcp_synctask_info_t; /* @@ -91,8 +91,6 @@ static int zcp_synctask_destroy(lua_State *, boolean_t, nvlist_t *); static zcp_synctask_info_t zcp_synctask_destroy_info = { .name = "destroy", .func = zcp_synctask_destroy, - .space_check = ZFS_SPACE_CHECK_NONE, - .blocks_modified = 0, .pargs = { {.za_name = "filesystem | snapshot", .za_lua_type = LUA_TSTRING}, {NULL, NULL} @@ -100,7 +98,9 @@ static zcp_synctask_info_t zcp_synctask_destroy_info = { .kwargs = { {.za_name = "defer", .za_lua_type = LUA_TBOOLEAN}, {NULL, NULL} - } + }, + .space_check = ZFS_SPACE_CHECK_NONE, + .blocks_modified = 0 }; /* ARGSUSED */ @@ -140,19 +140,19 @@ zcp_synctask_destroy(lua_State *state, boolean_t sync, nvlist_t *err_details) return (err); } -static int zcp_synctask_promote(lua_State *, boolean_t, nvlist_t *err_details); +static int zcp_synctask_promote(lua_State *, boolean_t, nvlist_t *); static zcp_synctask_info_t zcp_synctask_promote_info = { .name = "promote", .func = zcp_synctask_promote, - .space_check = ZFS_SPACE_CHECK_RESERVED, - .blocks_modified = 3, .pargs = { {.za_name = "clone", .za_lua_type = LUA_TSTRING}, {NULL, NULL} }, .kwargs = { {NULL, NULL} - } + }, + .space_check = ZFS_SPACE_CHECK_RESERVED, + .blocks_modified = 3 }; static int @@ -177,6 +177,89 @@ zcp_synctask_promote(lua_State *state, boolean_t sync, nvlist_t *err_details) return (err); } +static int zcp_synctask_rollback(lua_State *, boolean_t, nvlist_t *err_details); +static zcp_synctask_info_t zcp_synctask_rollback_info = { + .name = "rollback", + .func = zcp_synctask_rollback, + .space_check = ZFS_SPACE_CHECK_RESERVED, + .blocks_modified = 1, + .pargs = { + {.za_name = "filesystem", .za_lua_type = LUA_TSTRING}, + {NULL, NULL} + }, + .kwargs = { + {NULL, NULL} + } +}; + +static int +zcp_synctask_rollback(lua_State *state, boolean_t sync, nvlist_t *err_details) +{ + int err; + const char *dsname = lua_tostring(state, 1); + dsl_dataset_rollback_arg_t ddra = { 0 }; + + ddra.ddra_fsname = dsname; + ddra.ddra_result = err_details; + + err = zcp_sync_task(state, dsl_dataset_rollback_check, + dsl_dataset_rollback_sync, &ddra, sync, dsname); + + return (err); +} + +static int zcp_synctask_snapshot(lua_State *, boolean_t, nvlist_t *); +static zcp_synctask_info_t zcp_synctask_snapshot_info = { + .name = "snapshot", + .func = zcp_synctask_snapshot, + .pargs = { + {.za_name = "filesystem@snapname | volume@snapname", + .za_lua_type = LUA_TSTRING}, + {NULL, NULL} + }, + .kwargs = { + {NULL, NULL} + }, + .space_check = ZFS_SPACE_CHECK_NORMAL, + .blocks_modified = 3 +}; + +/* ARGSUSED */ +static int +zcp_synctask_snapshot(lua_State *state, boolean_t sync, nvlist_t *err_details) +{ + int err; + dsl_dataset_snapshot_arg_t ddsa = { 0 }; + const char *dsname = lua_tostring(state, 1); + zcp_run_info_t *ri = zcp_run_info(state); + + /* + * We only allow for a single snapshot rather than a list, so the + * error list output is unnecessary. + */ + ddsa.ddsa_errors = NULL; + ddsa.ddsa_props = NULL; + ddsa.ddsa_cr = ri->zri_cred; + ddsa.ddsa_snaps = fnvlist_alloc(); + fnvlist_add_boolean(ddsa.ddsa_snaps, dsname); + + /* + * On old pools, the ZIL must not be active when a snapshot is created, + * but we can't suspend the ZIL because we're already in syncing + * context. + */ + if (spa_version(ri->zri_pool->dp_spa) < SPA_VERSION_FAST_SNAP) { + return (ENOTSUP); + } + + err = zcp_sync_task(state, dsl_dataset_snapshot_check, + dsl_dataset_snapshot_sync, &ddsa, sync, dsname); + + fnvlist_free(ddsa.ddsa_snaps); + + return (err); +} + void zcp_synctask_wrapper_cleanup(void *arg) { @@ -247,6 +330,8 @@ zcp_load_synctask_lib(lua_State *state, boolean_t sync) zcp_synctask_info_t *zcp_synctask_funcs[] = { &zcp_synctask_destroy_info, &zcp_synctask_promote_info, + &zcp_synctask_rollback_info, + &zcp_synctask_snapshot_info, NULL }; diff --git a/usr/src/uts/common/fs/zfs/zfs_ioctl.c b/usr/src/uts/common/fs/zfs/zfs_ioctl.c index d8ac6d0867..11627ea1b1 100644 --- a/usr/src/uts/common/fs/zfs/zfs_ioctl.c +++ b/usr/src/uts/common/fs/zfs/zfs_ioctl.c @@ -26,7 +26,7 @@ * Copyright 2015, OmniTI Computer Consulting, Inc. All rights reserved. * Copyright 2015 Nexenta Systems, Inc. All rights reserved. * Copyright (c) 2014, 2016 Joyent, Inc. All rights reserved. - * Copyright (c) 2011, 2016 by Delphix. All rights reserved. + * Copyright (c) 2011, 2017 by Delphix. All rights reserved. * Copyright (c) 2013 by Saso Kiselkov. All rights reserved. * Copyright (c) 2013 Steven Hartland. All rights reserved. * Copyright (c) 2014 Integros [integros.com] @@ -3661,7 +3661,7 @@ zfs_ioc_channel_program(const char *poolname, nvlist_t *innvl, if (instrlimit == 0 || instrlimit > zfs_lua_max_instrlimit) return (EINVAL); - if (memlimit == 0 || memlimit > ZCP_MAX_MEMLIMIT) + if (memlimit == 0 || memlimit > zfs_lua_max_memlimit) return (EINVAL); return (zcp_eval(poolname, program, instrlimit, memlimit, diff --git a/usr/src/uts/common/fs/zfs/zfs_vnops.c b/usr/src/uts/common/fs/zfs/zfs_vnops.c index b7bf82b43a..f65bced706 100644 --- a/usr/src/uts/common/fs/zfs/zfs_vnops.c +++ b/usr/src/uts/common/fs/zfs/zfs_vnops.c @@ -1103,7 +1103,7 @@ zfs_get_data(void *arg, lr_write_t *lr, char *buf, struct lwb *lwb, zio_t *zio) } else { /* indirect write */ /* * Have to lock the whole block to ensure when it's - * written out and it's checksum is being calculated + * written out and its checksum is being calculated * that no one can change the data. We need to re-check * blocksize after we get the lock in case it's changed! */ diff --git a/usr/src/uts/common/fs/zfs/zil.c b/usr/src/uts/common/fs/zfs/zil.c index 8ad62309eb..df43790a5e 100644 --- a/usr/src/uts/common/fs/zfs/zil.c +++ b/usr/src/uts/common/fs/zfs/zil.c @@ -1996,7 +1996,6 @@ zil_process_commit_list(zilog_t *zilog) list_remove(&zilog->zl_itx_commit_list, itx); zil_itx_destroy(itx); } - DTRACE_PROBE1(zil__cw2, zilog_t *, zilog); if (lwb == NULL) { /* diff --git a/usr/src/uts/common/fs/zfs/zvol.c b/usr/src/uts/common/fs/zfs/zvol.c index 2ae0d7b35b..94a3b5bb0e 100644 --- a/usr/src/uts/common/fs/zfs/zvol.c +++ b/usr/src/uts/common/fs/zfs/zvol.c @@ -1009,7 +1009,6 @@ zvol_get_data(void *arg, lr_write_t *lr, char *buf, struct lwb *lwb, zio_t *zio) zgd = kmem_zalloc(sizeof (zgd_t), KM_SLEEP); zgd->zgd_lwb = lwb; - zgd->zgd_rl = zfs_range_lock(&zv->zv_znode, offset, size, RL_READER); /* * Write records come in two flavors: immediate and indirect. @@ -1018,12 +1017,22 @@ zvol_get_data(void *arg, lr_write_t *lr, char *buf, struct lwb *lwb, zio_t *zio) * sync the data and get a pointer to it (indirect) so that * we don't have to write the data twice. */ - if (buf != NULL) { /* immediate write */ + if (buf != NULL) { /* immediate write */ + zgd->zgd_rl = zfs_range_lock(&zv->zv_znode, offset, size, + RL_READER); error = dmu_read(os, object, offset, size, buf, DMU_READ_NO_PREFETCH); - } else { + } else { /* indirect write */ + /* + * Have to lock the whole block to ensure when it's written out + * and its checksum is being calculated that no one can change + * the data. Contrarily to zfs_get_data we need not re-check + * blocksize after we get the lock because it cannot be changed. + */ size = zv->zv_volblocksize; offset = P2ALIGN(offset, size); + zgd->zgd_rl = zfs_range_lock(&zv->zv_znode, offset, size, + RL_READER); error = dmu_buf_hold(os, object, offset, zgd, &db, DMU_READ_NO_PREFETCH); if (error == 0) { diff --git a/usr/src/uts/common/io/iwn/if_iwncompat.h b/usr/src/uts/common/io/iwn/if_iwncompat.h index 4e326bd2f7..8c0b61f69e 100644 --- a/usr/src/uts/common/io/iwn/if_iwncompat.h +++ b/usr/src/uts/common/io/iwn/if_iwncompat.h @@ -145,7 +145,6 @@ #define PCI_PRODUCT_INTEL_WIFI_LINK_6000_3X3_2 0x4238 #define __inline inline -#define __packed __attribute__((packed)) #define __arraycount(x) ARRAY_SIZE(x) #define abs(x) ABS(x) diff --git a/usr/src/uts/common/io/ixgbe/ixgbe_stat.c b/usr/src/uts/common/io/ixgbe/ixgbe_stat.c index c4d5b6d5fe..b5892b3c45 100644 --- a/usr/src/uts/common/io/ixgbe/ixgbe_stat.c +++ b/usr/src/uts/common/io/ixgbe/ixgbe_stat.c @@ -27,7 +27,7 @@ * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved. * Copyright 2012 Nexenta Systems, Inc. All rights reserved. * Copyright 2016 OmniTI Computer Consulting, Inc. All rights reserved. - * Copyright 2017 Joyent, Inc. + * Copyright (c) 2017, Joyent, Inc. */ #include "ixgbe_sw.h" diff --git a/usr/src/uts/common/io/ixgbe/ixgbe_sw.h b/usr/src/uts/common/io/ixgbe/ixgbe_sw.h index 12184751e4..ca52b10c89 100644 --- a/usr/src/uts/common/io/ixgbe/ixgbe_sw.h +++ b/usr/src/uts/common/io/ixgbe/ixgbe_sw.h @@ -27,7 +27,7 @@ * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2013 Saso Kiselkov. All rights reserved. * Copyright 2016 OmniTI Computer Consulting, Inc. All rights reserved. - * Copyright 2017 Joyent, Inc. + * Copyright (c) 2017, Joyent, Inc. */ #ifndef _IXGBE_SW_H diff --git a/usr/src/uts/common/sys/ccompile.h b/usr/src/uts/common/sys/ccompile.h index 91f99b2962..3bfbc2fb5e 100644 --- a/usr/src/uts/common/sys/ccompile.h +++ b/usr/src/uts/common/sys/ccompile.h @@ -115,19 +115,13 @@ extern "C" { */ #define __sun_attr___const__ __attribute__((__const__)) -/* - * structure packing like #pragma pack(1) - */ -#define __sun_attr___packed__ __attribute__((__packed__)) - +#if __GNUC_VERSION >= 20700 +#define __aligned(x) __attribute__((__aligned__(x))) /* * This attribute, attached to a variable, means that the variable is meant to * be possibly unused. GCC will not produce a warning for this variable. */ -#if __GNUC_VERSION >= 20700 #define __sun_attr___unused__ __attribute__((__unused__)) -#else -#define __sun_attr___unused__ #endif #define ___sun_attr_inner(__a) __sun_attr_##__a @@ -135,7 +129,9 @@ extern "C" { #else /* __ATTRIBUTE_IMPLEMENTED || __GNUC__ */ +#define __aligned(x) #define __sun_attr__(__a) +#define __sun_attr___unused__ #endif /* __ATTRIBUTE_IMPLEMENTED || __GNUC__ */ @@ -152,6 +148,7 @@ extern "C" { #define __RETURNS_TWICE __sun_attr__((__returns_twice__)) #define __CONST __sun_attr__((__const__)) #define __PURE __sun_attr__((__pure__)) +#define __packed __attribute__((__packed__)) #define __unused __sun_attr__((__unused__)) #ifdef __cplusplus |