Increment the reference count, returning the new count.
| 54 | |
| 55 | // Increment the reference count, returning the new count. |
| 56 | int |
| 57 | refcount_inc() |
| 58 | { |
| 59 | return ++m_refcount; |
| 60 | } |
| 61 | |
| 62 | // Decrement the reference count, returning the new count. |
| 63 | int |
no outgoing calls