Files
linux-apfs/include/linux/semaphore.h
T

47 lines
1.4 KiB
C
Raw Normal View History

2008-03-07 21:55:58 -05:00
/*
* Copyright (c) 2008 Intel Corporation
* Author: Matthew Wilcox <willy@linux.intel.com>
*
* Distributed under the terms of the GNU GPL, version 2
*
2008-04-11 15:23:52 -04:00
* Please see kernel/semaphore.c for documentation of these functions
2008-03-07 21:55:58 -05:00
*/
#ifndef __LINUX_SEMAPHORE_H
#define __LINUX_SEMAPHORE_H
#include <linux/list.h>
#include <linux/spinlock.h>
2008-04-11 15:23:52 -04:00
/* Please don't access any members of this structure directly */
2008-03-07 21:55:58 -05:00
struct semaphore {
spinlock_t lock;
2008-03-14 14:35:22 -04:00
unsigned int count;
2008-03-07 21:55:58 -05:00
struct list_head wait_list;
};
#define __SEMAPHORE_INITIALIZER(name, n) \
{ \
.lock = __SPIN_LOCK_UNLOCKED((name).lock), \
.count = n, \
.wait_list = LIST_HEAD_INIT((name).wait_list), \
}
2010-09-07 14:46:37 +02:00
#define DEFINE_SEMAPHORE(name) \
struct semaphore name = __SEMAPHORE_INITIALIZER(name, 1)
2008-03-07 21:55:58 -05:00
static inline void sema_init(struct semaphore *sem, int val)
{
static struct lock_class_key __key;
*sem = (struct semaphore) __SEMAPHORE_INITIALIZER(*sem, val);
lockdep_init_map(&sem->lock.dep_map, "semaphore->lock", &__key, 0);
}
extern void down(struct semaphore *sem);
extern int __must_check down_interruptible(struct semaphore *sem);
2008-03-14 13:19:33 -04:00
extern int __must_check down_killable(struct semaphore *sem);
2008-03-07 21:55:58 -05:00
extern int __must_check down_trylock(struct semaphore *sem);
2008-03-14 13:43:13 -04:00
extern int __must_check down_timeout(struct semaphore *sem, long jiffies);
2008-03-07 21:55:58 -05:00
extern void up(struct semaphore *sem);
#endif /* __LINUX_SEMAPHORE_H */