- 履歴一覧
- ソース を表示
- linux-2.6.33/arch_write_lock(x86) は削除されています。
- 1 (2010-11-04 (木) 21:25:58)
参照元†
- arch_write_lock() の x86 版です。
返り値†
static inline int arch_write_trylock(arch_rwlock_t *lock)
{
atomic_t *count = (atomic_t *)lock;
if (atomic_sub_and_test(RW_LOCK_BIAS, count))
return 1;
atomic_add(RW_LOCK_BIAS, count);
return 0;
}
コメント†