Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 6081 → Rev 6082

/drivers/include/linux/rcutiny.h
92,21 → 92,53
}
 
/*
* Return the number of grace periods.
* Return the number of grace periods started.
*/
static inline long rcu_batches_completed(void)
static inline unsigned long rcu_batches_started(void)
{
return 0;
}
 
/*
* Return the number of bottom-half grace periods.
* Return the number of bottom-half grace periods started.
*/
static inline long rcu_batches_completed_bh(void)
static inline unsigned long rcu_batches_started_bh(void)
{
return 0;
}
 
/*
* Return the number of sched grace periods started.
*/
static inline unsigned long rcu_batches_started_sched(void)
{
return 0;
}
 
/*
* Return the number of grace periods completed.
*/
static inline unsigned long rcu_batches_completed(void)
{
return 0;
}
 
/*
* Return the number of bottom-half grace periods completed.
*/
static inline unsigned long rcu_batches_completed_bh(void)
{
return 0;
}
 
/*
* Return the number of sched grace periods completed.
*/
static inline unsigned long rcu_batches_completed_sched(void)
{
return 0;
}
 
static inline void rcu_force_quiescent_state(void)
{
}
127,6 → 159,22
{
}
 
static inline void rcu_idle_enter(void)
{
}
 
static inline void rcu_idle_exit(void)
{
}
 
static inline void rcu_irq_enter(void)
{
}
 
static inline void rcu_irq_exit(void)
{
}
 
static inline void exit_rcu(void)
{
}
154,7 → 202,10
return true;
}
 
 
#endif /* #else defined(CONFIG_DEBUG_LOCK_ALLOC) || defined(CONFIG_RCU_TRACE) */
 
static inline void rcu_all_qs(void)
{
}
 
#endif /* __LINUX_RCUTINY_H */