![]() |
![]()
| ![]() |
![]()
NAME
SYNOPSIS
dev_t
int
int
DESCRIPTIONThe
dev == makedev(major(dev),
minor(dev)) ma == major(makedev(ma,
mi)) mi == minor(makedev(ma,
mi)) In previous implementations of FreeBSD all block and character devices were uniquely identified by a pair of stable major and minor numbers. The major number referred to a certain device class (e.g. disks, TTYs) while the minor number identified an instance within the device class. Later versions of FreeBSD automatically generate a unique device number for each character device visible in /dev/. These numbers are not divided in device classes and are not guaranteed to be stable upon reboot or driver reload. On FreeBSD these macros are only used by utilities that need to exchange numbers with other operating systems that may use different encodings for dev_t, but also applications that present these numbers to the user in a more conventional way. RETURN VALUESThe SEE ALSO
|