Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/src/kernels/5.14.0-539.el9.x86_64/tools/include/linux/ |
Upload File : |
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _LIBLOCKDEP_RCU_H_ #define _LIBLOCKDEP_RCU_H_ int rcu_scheduler_active; static inline int rcu_lockdep_current_cpu_online(void) { return 1; } static inline int rcu_is_cpu_idle(void) { return 1; } static inline bool rcu_is_watching(void) { return false; } #define rcu_assign_pointer(p, v) do { (p) = (v); } while (0) #define RCU_INIT_POINTER(p, v) do { (p) = (v); } while (0) #endif