process.h 267 B

12345678910
  1. // Copyright 2007 - 2021, Alan Antonuk and the rabbitmq-c contributors.
  2. // SPDX-License-Identifier: mit
  3. struct pipeline {
  4. int pid;
  5. int infd;
  6. };
  7. extern void pipeline(const char *const *argv, struct pipeline *pl);
  8. extern int finish_pipeline(struct pipeline *pl);