Also called when we're oom, so it will kill reader. */
| 123 | |
| 124 | /* Also called when we're oom, so it will kill reader. */ |
| 125 | void json_stream_flush(struct json_stream *js) |
| 126 | { |
| 127 | /* Wake the stream reader. FIXME: Could have a flag here to optimize */ |
| 128 | io_wake(js); |
| 129 | } |
| 130 | |
| 131 | void json_array_start(struct json_stream *js, const char *fieldname) |
| 132 | { |
no test coverage detected