~oxalin/lightspark/buildnaudioplugin

« back to all changes in this revision

Viewing changes to threading.h

  • Committer: Alessandro
  • Date: 2010-09-06 19:31:31 UTC
  • mfrom: (911.13.93)
  • Revision ID: git-v1:9f6175895e49dc81d39f6f99e66e2adc5a82bdb3
Merge branch 'master' of http://github.com/Oxalin/lightspark

Conflicts:
        CMakeLists.txt
        scripting/flashnet.cpp

Show diffs side-by-side

added added

removed removed

Lines of Context:
133
133
        bool isEmpty() const { return empty; }
134
134
        T& front()
135
135
        {
136
 
                assert(!empty);
 
136
                assert(!this->empty);
137
137
                return queue[bufferHead];
138
138
        }
139
139
        const T& front() const
140
140
        {
141
 
                assert(!empty);
 
141
                assert(!this->empty);
142
142
                return queue[bufferHead];
143
143
        }
144
144
        bool nonBlockingPopFront()