[6879] Not apply casting time spell bonuses mods to creature (non-pets) casted spells...
[getmangos.git] / dep / include / zthread / PrioritySemaphore.h
blob54ef2c48c52fd7b900a20cd60b0e43da95cf2e8c
1 /*
2 * Copyright (c) 2005, Eric Crahen
4 * Permission is hereby granted, free of charge, to any person obtaining a copy
5 * of this software and associated documentation files (the "Software"), to deal
6 * in the Software without restriction, including without limitation the rights
7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 * copies of the Software, and to permit persons to whom the Software is furnished
9 * to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in all
12 * copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
18 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 #ifndef __ZTPRIORITYSEMAPHORE_H__
25 #define __ZTPRIORITYSEMAPHORE_H__
27 #include "zthread/Lockable.h"
28 #include "zthread/NonCopyable.h"
30 namespace ZThread {
32 class PrioritySemaphoreImpl;
34 /**
35 * @class PrioritySemaphore
36 * @author Eric Crahen <http://www.code-foo.com>
37 * @date <2003-07-16T15:36:07-0400>
38 * @version 2.2.1
40 * A PrioritySemaphore operates in the same way as a Semaphore. Its an owner-less
41 * Lockable object that is sensitive to priority.
43 * <b>Scheduling</b>
45 * Threads blocked on a PrioritySemaphore are resumed in priority order, highest
46 * priority first.
48 * <b>Error Checking</b>
50 * An attempt to increase a PrioritySemaphore beyond its maximum value will result in
51 * an InvalidOp_Exception.
53 * @see Semaphore
55 class ZTHREAD_API PrioritySemaphore : public Lockable, private NonCopyable {
57 PrioritySemaphoreImpl* _impl;
59 public:
61 /**
62 * @see Semaphore::Semaphore(int count, unsigned int maxCount)
64 PrioritySemaphore(int count = 1, unsigned int maxCount = 1);
66 /**
67 * @see Semaphore::~Semaphore()
69 virtual ~PrioritySemaphore();
71 /**
72 * @see Semaphore::wait()
73 */
74 void wait();
76 /**
77 * @see Semaphore::tryWait(unsigned long)
78 */
79 bool tryWait(unsigned long);
81 /**
82 * @see Semaphore::post()
84 void post();
86 /**
87 * @see Semaphore::count()
89 virtual int count();
91 /**
92 * @see Semaphore::tryAcquire(unsigned long timeout)
94 virtual bool tryAcquire(unsigned long timeout);
96 /**
97 * @see Semaphore::acquire()
99 virtual void acquire();
102 * @see Semaphore::release()
104 virtual void release();
109 } // namespace ZThread
111 #endif // __ZTPRIORITYSEMAPHORE_H__