| 278 | */ |
| 279 | |
| 280 | class 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 |
nothing calls this directly
no outgoing calls
no test coverage detected