MCPcopy Create free account
hub / github.com/GarageGames/Torque3D / allocNotify

Method allocNotify

Engine/source/console/simObject.cpp:1546–1555  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1544//-----------------------------------------------------------------------------
1545
1546SimObject::Notify *SimObject::allocNotify()
1547{
1548 if(mNotifyFreeList)
1549 {
1550 SimObject::Notify *ret = mNotifyFreeList;
1551 mNotifyFreeList = ret->next;
1552 return ret;
1553 }
1554 return notifyChunker.alloc();
1555}
1556
1557//-----------------------------------------------------------------------------
1558

Callers

nothing calls this directly

Calls 1

allocMethod · 0.45

Tested by

no test coverage detected