summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--stream.c8
-rw-r--r--stream.h2
2 files changed, 7 insertions, 3 deletions
diff --git a/stream.c b/stream.c
index 1c61873b..c38df097 100644
--- a/stream.c
+++ b/stream.c
@@ -1342,8 +1342,7 @@ static int pipevp_close(FILE *f, pid_t pid)
sig_restore_enable;
return status;
}
-#endif
-
+#else
static int se_pclose(FILE *f)
{
int ret;
@@ -1352,6 +1351,7 @@ static int se_pclose(FILE *f)
sig_restore_enable;
return ret;
}
+#endif
static val pipe_close(val stream, val throw_on_error)
{
@@ -1359,7 +1359,7 @@ static val pipe_close(val stream, val throw_on_error)
if (h->f != 0) {
#if HAVE_FORK_STUFF
- int status = h->pid != 0 ? pipevp_close(h->f, h->pid) : se_pclose(h->f);
+ int status = pipevp_close(h->f, h->pid);
#else
int status = se_pclose(h->f);
#endif
@@ -1706,10 +1706,12 @@ val make_tail_stream(FILE *f, val descr)
return stream;
}
+#if !HAVE_FORK_STUFF
val make_pipe_stream(FILE *f, val descr)
{
return make_stdio_stream_common(f, descr, &pipe_ops.cobj_ops);
}
+#endif
#if HAVE_SOCKETS
val make_sock_stream(FILE *f, val family, val type)
diff --git a/stream.h b/stream.h
index adf7cb7e..4c2f6a0e 100644
--- a/stream.h
+++ b/stream.h
@@ -166,7 +166,9 @@ val errno_to_string(val err);
val make_null_stream(void);
val make_stdio_stream(FILE *, val descr);
val make_tail_stream(FILE *, val descr);
+#if !HAVE_FORK_STUFF
val make_pipe_stream(FILE *, val descr);
+#endif
val stream_fd(val stream);
#if HAVE_SOCKETS
val make_sock_stream(FILE *f, val family, val type);