RE: [PATCH v3 7/8] sub-process: move sub-process functions into separate files

2017-03-30 Thread Ben Peart
> From: Junio C Hamano [mailto:gits...@pobox.com] > > > diff --git a/sub-process.c b/sub-process.c new file mode 100644 index > > 00..2c4d27c193 > > --- /dev/null > > +++ b/sub-process.c > > @@ -0,0 +1,116 @@ > > +/* > > + * Generic implementation of background process infrastructure. > >

Re: [PATCH v3 7/8] sub-process: move sub-process functions into separate files

2017-03-29 Thread Junio C Hamano
Ben Peart writes: > +Types > +- > + > +'int(*subprocess_start_fn)(struct subprocess_entry *entry)':: > + > + User-supplied function to initialize the sub-process. This is > + typically used to negoiate the interface version and capabilities. > + > + > +Functions