Make MessageQueue::flush() reentrant
This commit is contained in:
parent
9fa4f1c54c
commit
983fd3a7bb
1 changed files with 9 additions and 6 deletions
|
@ -318,12 +318,19 @@ void MessageQueue::flush() {
|
|||
|
||||
while (read_pos < buffer_end) {
|
||||
|
||||
_THREAD_SAFE_UNLOCK_
|
||||
|
||||
//lock on each interation, so a call can re-add itself to the message queue
|
||||
|
||||
Message *message = (Message *)&buffer[read_pos];
|
||||
|
||||
uint32_t advance = sizeof(Message);
|
||||
if ((message->type & FLAG_MASK) != TYPE_NOTIFICATION)
|
||||
advance += sizeof(Variant) * message->args;
|
||||
|
||||
//pre-advance so this function is reentrant
|
||||
read_pos += advance;
|
||||
|
||||
_THREAD_SAFE_UNLOCK_
|
||||
|
||||
Object *target = ObjectDB::get_instance(message->instance_ID);
|
||||
|
||||
if (target != NULL) {
|
||||
|
@ -359,13 +366,9 @@ void MessageQueue::flush() {
|
|||
}
|
||||
}
|
||||
|
||||
uint32_t advance = sizeof(Message);
|
||||
if ((message->type & FLAG_MASK) != TYPE_NOTIFICATION)
|
||||
advance += sizeof(Variant) * message->args;
|
||||
message->~Message();
|
||||
|
||||
_THREAD_SAFE_LOCK_
|
||||
read_pos += advance;
|
||||
}
|
||||
|
||||
buffer_end = 0; // reset buffer
|
||||
|
|
Loading…
Reference in a new issue