summaryrefslogtreecommitdiffstats
path: root/rules/libpipeline.in
blob: 03abcdbaf606e6f74fe4ad6ea2d515a5f00c2cd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
## SECTION=system_libraries

menuconfig LIBPIPELINE
	tristate
	prompt "libpipeline                   "
	help
	  libpipeline is a C library for setting up and running pipelines of
	  processes, without needing to involve shell command-line parsing which
	  is often error-prone and insecure. This alleviates programmers of the
	  need to laboriously construct pipelines using lower-level primitives
	  such as fork and execve.

if LIBPIPELINE
config LIBPIPELINE_SOCKETPAIR
	bool
	prompt "Use socketpair"
	help
	  Use socketpair(2) as fast replacement for pipe(2)

endif