| 909 | } |
| 910 | |
| 911 | void pipe_push(pipe_producer_t* p, const void* restrict elems, size_t count) |
| 912 | { |
| 913 | count *= __pipe_elem_size(PIPIFY(p)); |
| 914 | __pipe_push(PIPIFY(p), elems, count); |
| 915 | } |
| 916 | |
| 917 | /* |
| 918 | #ifdef PIPE_DEBUG |
nothing calls this directly
no test coverage detected