is allocation type resource? */
| 137 | |
| 138 | /** is allocation type resource? */ |
| 139 | static bool isresource(const int id) { |
| 140 | return ((id > 0) && ((id & 1) == 1)); |
| 141 | } |
| 142 | static bool isresource(const AllocFunc* const func) { |
| 143 | return func && (func->groupId > 0) && ((func->groupId & 1) == 1); |
| 144 | } |
no outgoing calls