| 440 | } |
| 441 | |
| 442 | uint GraphContext_AttributeCount(GraphContext *gc) { |
| 443 | pthread_rwlock_rdlock(&gc->_attribute_rwlock); |
| 444 | uint size = raxSize(gc->attributes); |
| 445 | pthread_rwlock_unlock(&gc->_attribute_rwlock); |
| 446 | return size; |
| 447 | } |
| 448 | |
| 449 | Attribute_ID GraphContext_FindOrAddAttribute |
| 450 | ( |
no outgoing calls
no test coverage detected