diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-09-08 11:15:51 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-09-08 11:15:51 -0700 |
commit | 2c20130f200b8f9aa746b7c7bc265ab129c29ead (patch) | |
tree | 3963fb471dd62396f708912b996ff14d63565f9a /include | |
parent | 1faa6ec8ccbde8c4f0237be80473a4294ebf8289 (diff) | |
parent | febc88c5948f81114f64c3412011d695aecae233 (diff) | |
download | linux-3.10-2c20130f200b8f9aa746b7c7bc265ab129c29ead.tar.gz linux-3.10-2c20130f200b8f9aa746b7c7bc265ab129c29ead.tar.bz2 linux-3.10-2c20130f200b8f9aa746b7c7bc265ab129c29ead.zip |
Merge branch 'semaphore-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'semaphore-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
semaphore: Add DEFINE_SEMAPHORE
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/semaphore.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/semaphore.h b/include/linux/semaphore.h index 7415839ac89..5310d27abd2 100644 --- a/include/linux/semaphore.h +++ b/include/linux/semaphore.h @@ -26,6 +26,9 @@ struct semaphore { .wait_list = LIST_HEAD_INIT((name).wait_list), \ } +#define DEFINE_SEMAPHORE(name) \ + struct semaphore name = __SEMAPHORE_INITIALIZER(name, 1) + #define DECLARE_MUTEX(name) \ struct semaphore name = __SEMAPHORE_INITIALIZER(name, 1) |