⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 semaphore-helper.h

📁 基于组件方式开发操作系统的OSKIT源代码
💻 H
字号:
#ifndef _I386_SEMAPHORE_HELPER_H#define _I386_SEMAPHORE_HELPER_H/* * SMP- and interrupt-safe semaphores helper functions. * * (C) Copyright 1996 Linus Torvalds * (C) Copyright 1999 Andrea Arcangeli *//* * These two _must_ execute atomically wrt each other. * * This is trivially done with load_locked/store_cond, * but on the x86 we need an external synchronizer. * * NOTE: we can't look at the semaphore count here since it can be * unreliable. Even if the count is minor than 1, the semaphore * could be just owned by another process (this because not only up() increases * the semaphore count, also the interruptible/trylock call can increment * the semaphore count when they fails). */static inline void wake_one_more(struct semaphore * sem){	unsigned long flags;	spin_lock_irqsave(&semaphore_wake_lock, flags);	sem->waking++;	spin_unlock_irqrestore(&semaphore_wake_lock, flags);}static inline int waking_non_zero(struct semaphore *sem){	unsigned long flags;	int ret = 0;	spin_lock_irqsave(&semaphore_wake_lock, flags);	if (sem->waking > 0) {		sem->waking--;		ret = 1;	}	spin_unlock_irqrestore(&semaphore_wake_lock, flags);	return ret;}/* * waking_non_zero_interruptible: *	1	got the lock *	0	go to sleep *	-EINTR	interrupted * * If we give up we must undo our count-decrease we previously did in down(). * Subtle: up() can continue to happens and increase the semaphore count * even during our critical section protected by the spinlock. So * we must remeber to undo the sem->waking that will be run from * wake_one_more() some time soon, if the semaphore count become > 0. */static inline int waking_non_zero_interruptible(struct semaphore *sem,						struct task_struct *tsk){	unsigned long flags;	int ret = 0;	spin_lock_irqsave(&semaphore_wake_lock, flags);	if (sem->waking > 0) {		sem->waking--;		ret = 1;	} else if (signal_pending(tsk)) {		if (atomic_inc_and_test_greater_zero(&sem->count))			sem->waking--;		ret = -EINTR;	}	spin_unlock_irqrestore(&semaphore_wake_lock, flags);	return ret;}/* * waking_non_zero_trylock: *	1	failed to lock *	0	got the lock * * Implementation details are the same of the interruptible case. */static inline int waking_non_zero_trylock(struct semaphore *sem){	unsigned long flags;	int ret = 1;	spin_lock_irqsave(&semaphore_wake_lock, flags);	if (sem->waking <= 0)	{		if (atomic_inc_and_test_greater_zero(&sem->count))			sem->waking--;	} else {		sem->waking--;		ret = 0;	}	spin_unlock_irqrestore(&semaphore_wake_lock, flags);	return ret;}#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -