* ref_get * increment reference counter for object. */
| 40 | * increment reference counter for object. |
| 41 | */ |
| 42 | rt_inline void rt_ref_get(struct rt_ref *r) |
| 43 | { |
| 44 | rt_atomic_add(&r->refcount, 1); |
| 45 | } |
| 46 | |
| 47 | /** |
| 48 | * ref_put |
no outgoing calls
no test coverage detected