ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
22 lines
480 B
C
22 lines
480 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* x86-specific clocksource additions */
|
|
|
|
#ifndef _ASM_X86_CLOCKSOURCE_H
|
|
#define _ASM_X86_CLOCKSOURCE_H
|
|
|
|
#include <asm/vdso/clocksource.h>
|
|
|
|
extern unsigned int vclocks_used;
|
|
|
|
static inline bool vclock_was_used(int vclock)
|
|
{
|
|
return READ_ONCE(vclocks_used) & (1U << vclock);
|
|
}
|
|
|
|
static inline void vclocks_set_used(unsigned int which)
|
|
{
|
|
WRITE_ONCE(vclocks_used, READ_ONCE(vclocks_used) | (1 << which));
|
|
}
|
|
|
|
#endif /* _ASM_X86_CLOCKSOURCE_H */
|