File: sysmacros.h

package info (click to toggle)
klibc 2.0.6-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 5,240 kB
  • sloc: ansic: 48,401; asm: 2,531; perl: 789; makefile: 231; sh: 160
file content (37 lines) | stat: -rw-r--r-- 865 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
 * sys/sysmacros.h
 *
 * Constructs to create and pick apart dev_t.  The double-underscore
 * versions are macros so they can be used as constants.
 */

#ifndef _SYS_SYSMACROS_H
#define _SYS_SYSMACROS_H

#include <klibc/compiler.h>
#include <sys/types.h>

#define __major(__d) ((int)(((__d) >> 8) & 0xfffU))
__static_inline int _major(dev_t __d)
{
	return __major(__d);
}
#define major(__d) _major(__d)

#define __minor(__d) ((int)(((__d) & 0xffU)|(((__d) >> 12) & 0xfff00U)))
__static_inline int _minor(dev_t __d)
{
	return __minor(__d);
}
#define minor(__d) _minor(__d)

#define __makedev(__ma, __mi) \
	((dev_t)((((__ma) & 0xfffU) << 8)| \
		 ((__mi) & 0xffU)|(((__mi) & 0xfff00U) << 12)))
__static_inline dev_t _makedev(int __ma, int __mi)
{
	return __makedev(__ma, __mi);
}
#define makedev(__ma, __mi) _makedev(__ma, __mi)

#endif				/* _SYS_SYSMACROS_H */