MCPcopy Create free account
hub / github.com/csound/csound / CsPerfThreadMsg_Stop

Class CsPerfThreadMsg_Stop

interfaces/csPerfThread.cpp:280–293  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

278 */
279
280class CsPerfThreadMsg_Stop : public CsoundPerformanceThreadMessage {
281 public:
282 CsPerfThreadMsg_Stop(CsoundPerformanceThread *pt)
283 : CsoundPerformanceThreadMessage(pt)
284 {
285 CsoundPerformanceThreadMessage::QueueMessage(
286 new CsPerfThreadMsg_StopRecord(pt));
287 }
288 int run()
289 {
290 return 1;
291 }
292 ~CsPerfThreadMsg_Stop() {}
293};
294
295/**
296 * Score event message

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected