| 120 | //------------------------------------------------------------------------ |
| 121 | |
| 122 | void __TBB_InitOnce::add_ref() { |
| 123 | if( ++count==1 ) |
| 124 | governor::acquire_resources(); |
| 125 | } |
| 126 | |
| 127 | void __TBB_InitOnce::remove_ref() { |
| 128 | int k = --count; |
nothing calls this directly
no outgoing calls
no test coverage detected