| 95 | */ |
| 96 | |
| 97 | class CsPerfThreadMsg_Pause : public CsoundPerformanceThreadMessage { |
| 98 | public: |
| 99 | CsPerfThreadMsg_Pause(CsoundPerformanceThread *pt) |
| 100 | : CsoundPerformanceThreadMessage(pt) {} |
| 101 | int run() |
| 102 | { |
| 103 | SetPaused(1); |
| 104 | return 0; |
| 105 | } |
| 106 | ~CsPerfThreadMsg_Pause() {} |
| 107 | }; |
| 108 | |
| 109 | /** |
| 110 | * Toggle pause mode |
nothing calls this directly
no outgoing calls
no test coverage detected