[7297] Fixed profession spells sorting in trainer spell list at client.
[getmangos.git] / dep / src / zthread / PriorityInheritanceMutex.cxx
blob108e4a7437089f3c6d745c674f167ec0c2399883
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.
23 #include "zthread/PriorityInheritanceMutex.h"
24 #include "MutexImpl.h"
25 #include "ThreadOps.h"
28 namespace ZThread {
30 class InheritPriorityBehavior : public NullBehavior {
32 ThreadImpl* owner;
33 Priority p;
35 protected:
37 // Temporarily raise the effective priority of the owner
38 inline void waiterArrived(ThreadImpl* impl) {
40 Priority q = impl->getPriority();
41 if((int)q > (int)p) {
43 ThreadOps::setPriority(impl, p);
44 p = q;
51 // Note the owners priority
52 inline void ownerAcquired(ThreadImpl* impl) {
54 p = impl->getPriority();
55 owner = impl;
59 // Restore its original priority
60 inline void ownerReleased(ThreadImpl* impl) {
62 if(p > owner->getPriority())
63 ThreadOps::setPriority(impl, impl->getPriority());
69 class PriorityInheritanceMutexImpl :
70 public MutexImpl<priority_list, InheritPriorityBehavior> { };
72 PriorityInheritanceMutex::PriorityInheritanceMutex() {
74 _impl = new PriorityInheritanceMutexImpl();
78 PriorityInheritanceMutex::~PriorityInheritanceMutex() {
80 if(_impl != 0)
81 delete _impl;
85 // P
86 void PriorityInheritanceMutex::acquire() {
88 _impl->acquire();
93 // P
94 bool PriorityInheritanceMutex::tryAcquire(unsigned long ms) {
96 return _impl->tryAcquire(ms);
100 // V
101 void PriorityInheritanceMutex::release() {
103 _impl->release();
108 } // namespace ZThread