tools/include/vdso/bits.h

Source file repositories/reference/linux-study-clean/tools/include/vdso/bits.h

File Facts

System
Linux kernel
Corpus path
tools/include/vdso/bits.h
Extension
.h
Size
209 bytes
Lines
11
Domain
Support Tooling And Documentation
Bucket
tools
Inferred role
Support Tooling And Documentation: implementation source
Status
source implementation candidate

Why This File Exists

Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.

Dependency Surface

Detected Declarations

Annotated Snippet

#ifndef __VDSO_BITS_H
#define __VDSO_BITS_H

#include <vdso/const.h>

#define BIT(nr)			(UL(1) << (nr))
#define BIT_ULL(nr)		(ULL(1) << (nr))

#endif	/* __VDSO_BITS_H */

Annotation

Implementation Notes