| 309 | // *************************************************** // |
| 310 | |
| 311 | RtApi ::RtApi() |
| 312 | { |
| 313 | stream_.state = STREAM_CLOSED; |
| 314 | stream_.mode = UNINITIALIZED; |
| 315 | stream_.apiHandle = 0; |
| 316 | stream_.userBuffer[0] = 0; |
| 317 | stream_.userBuffer[1] = 0; |
| 318 | MUTEX_INITIALIZE(&stream_.mutex); |
| 319 | showWarnings_ = true; |
| 320 | firstErrorOccurred_ = false; |
| 321 | } |
| 322 | |
| 323 | RtApi ::~RtApi() |
| 324 | { |
nothing calls this directly
no outgoing calls
no test coverage detected