pre-condition: we have the lock, arbitrary thread
| 711 | |
| 712 | // pre-condition: we have the lock, arbitrary thread |
| 713 | void Probe::queueDestroyedObject(QObject *obj) |
| 714 | { |
| 715 | ObjectChange c; |
| 716 | c.obj = obj; |
| 717 | c.type = ObjectChange::Destroy; |
| 718 | m_queuedObjectChanges.push_back(c); |
| 719 | notifyQueuedObjectChanges(); |
| 720 | } |
| 721 | |
| 722 | // pre-condition: we have the lock, arbitrary thread |
| 723 | bool Probe::isObjectCreationQueued(QObject *obj) const |