Deleted Added
full compact
make_dev.9 (115441) make_dev.9 (119893)
1.\" Copyright (c) 1999 Chris Costello
2.\" All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\" notice, this list of conditions and the following disclaimer.

--- 8 unchanged lines hidden (view full) ---

17.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23.\" SUCH DAMAGE.
24.\"
1.\" Copyright (c) 1999 Chris Costello
2.\" All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\" notice, this list of conditions and the following disclaimer.

--- 8 unchanged lines hidden (view full) ---

17.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23.\" SUCH DAMAGE.
24.\"
25.\" $FreeBSD: head/share/man/man9/make_dev.9 115441 2003-05-31 14:20:30Z hmp $
25.\" $FreeBSD: head/share/man/man9/make_dev.9 119893 2003-09-08 19:57:22Z ru $
26.\"
27.Dd May 27, 2001
28.Os
29.Dt MAKE_DEV 9
30.Sh NAME
31.Nm make_dev ,
32.Nm make_dev_alias ,
33.Nm destroy_dev ,

--- 22 unchanged lines hidden (view full) ---

56.Va uid ,
57with the group ownership as
58.Va gid ,
59and with the name as specified in
60.Va name .
61The permissions of the file specified in
62.Va perms
63are defined in
26.\"
27.Dd May 27, 2001
28.Os
29.Dt MAKE_DEV 9
30.Sh NAME
31.Nm make_dev ,
32.Nm make_dev_alias ,
33.Nm destroy_dev ,

--- 22 unchanged lines hidden (view full) ---

56.Va uid ,
57with the group ownership as
58.Va gid ,
59and with the name as specified in
60.Va name .
61The permissions of the file specified in
62.Va perms
63are defined in
64.Aq Pa sys/stat.h :
64.In sys/stat.h :
65.Pp
66.Bd -literal -offset indent -compact
67#define S_IRWXU 0000700 /* RWX mask for owner */
68#define S_IRUSR 0000400 /* R for owner */
69#define S_IWUSR 0000200 /* W for owner */
70#define S_IXUSR 0000100 /* X for owner */
71
72#define S_IRWXG 0000070 /* RWX mask for group */

--- 68 unchanged lines hidden ---
65.Pp
66.Bd -literal -offset indent -compact
67#define S_IRWXU 0000700 /* RWX mask for owner */
68#define S_IRUSR 0000400 /* R for owner */
69#define S_IWUSR 0000200 /* W for owner */
70#define S_IXUSR 0000100 /* X for owner */
71
72#define S_IRWXG 0000070 /* RWX mask for group */

--- 68 unchanged lines hidden ---