]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - share/man/man3/makedev.3
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / share / man / man3 / makedev.3
1 .\" Copyright (c) 2008 Ed Schouten <ed@FreeBSD.org>
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.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\"
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
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$
26 .\"
27 .Dd September 28, 2008
28 .Dt MAKEDEV 3
29 .Os
30 .Sh NAME
31 .Nm makedev ,
32 .Nm major ,
33 .Nm minor
34 .Nd device number conversion
35 .Sh SYNOPSIS
36 .In sys/types.h
37 .Ft dev_t
38 .Fn makedev "int major" "int minor"
39 .Ft int
40 .Fn major "dev_t dev"
41 .Ft int
42 .Fn minor "dev_t dev"
43 .Sh DESCRIPTION
44 The
45 .Fn makedev
46 macro allows a unique device number to be generated based on its
47 .Fa major
48 and
49 .Fa minor
50 number.
51 The
52 .Fn major
53 and
54 .Fn minor
55 macros can be used to obtain the original numbers from the device number
56 .Fa dev .
57 .Pp
58 In previous implementations of
59 .Fx
60 all block and character devices were uniquely identified by a pair of
61 major and minor numbers.
62 The major number referred to a certain device class (e.g. disks, TTYs)
63 while the minor number identified an instance within the device class.
64 Later versions of
65 .Fx
66 automatically generate a unique device number for each character device
67 visible in
68 .Pa /dev/ .
69 These numbers are not divided in device classes.
70 .Pp
71 On
72 .Fx
73 these macros are only used by utilities that need to exchange numbers
74 with other operating systems that may use different encodings for
75 .Vt dev_t ,
76 but also applications that present these numbers to the user in a more
77 conventional way.
78 .Sh RETURN VALUES
79 The
80 .Fn major
81 macro returns a device major number that has a value between 0 and 255.
82 The
83 .Fn minor
84 macro returns a device minor number whose value can span the complete
85 range of an
86 .Vt int .
87 .Sh SEE ALSO
88 .Xr devfs 5 ,
89 .Xr devname 3 ,
90 .Xr mknod 2