| 174 | } |
| 175 | |
| 176 | void TraceSvcUtil::stopSession(ULONG id) |
| 177 | { |
| 178 | ClumpletWriter spb(ClumpletWriter::SpbStart, MAXBUF); |
| 179 | |
| 180 | spb.insertTag(isc_action_svc_trace_stop); |
| 181 | spb.insertInt(isc_spb_trc_id, id); |
| 182 | |
| 183 | runService(spb.getBufferLength(), spb.getBuffer()); |
| 184 | } |
| 185 | |
| 186 | void TraceSvcUtil::setActive(ULONG id, bool active) |
| 187 | { |
nothing calls this directly
no test coverage detected