summaryrefslogtreecommitdiff
path: root/tools/unix/process.h
blob: 9dbade994c1b5cae6060a584fdeca8e4def46f35 (plain)
1
2
3
4
5
6
7
8
9
10
// Copyright 2007 - 2021, Alan Antonuk and the rabbitmq-c contributors.
// SPDX-License-Identifier: mit

struct pipeline {
  int pid;
  int infd;
};

extern void pipeline(const char *const *argv, struct pipeline *pl);
extern int finish_pipeline(struct pipeline *pl);