| 830 | /************************************************************************/ |
| 831 | |
| 832 | void msIO_installStdinFromBuffer() |
| 833 | |
| 834 | { |
| 835 | msIOContextGroup *group = msIO_GetContextGroup(); |
| 836 | msIOContext context; |
| 837 | |
| 838 | context.label = "buffer"; |
| 839 | context.write_channel = MS_FALSE; |
| 840 | context.readWriteFunc = msIO_bufferRead; |
| 841 | context.cbData = calloc(sizeof(msIOBuffer),1); |
| 842 | |
| 843 | msIO_installHandlers( &context, |
| 844 | &group->stdout_context, |
| 845 | &group->stderr_context ); |
| 846 | } |
| 847 | |
| 848 | /************************************************************************/ |
| 849 | /* msIO_stripStdoutBufferContentType() */ |
no test coverage detected