increase graph context ref count by 1
| 48 | |
| 49 | // increase graph context ref count by 1 |
| 50 | inline void GraphContext_IncreaseRefCount |
| 51 | ( |
| 52 | GraphContext *gc |
| 53 | ) { |
| 54 | ASSERT(gc != NULL); |
| 55 | __atomic_fetch_add(&gc->ref_count, 1, __ATOMIC_RELAXED); |
| 56 | } |
| 57 | |
| 58 | // decrease graph context ref count by 1 |
| 59 | inline void GraphContext_DecreaseRefCount |
no outgoing calls
no test coverage detected