Commit c2e0af90 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Comment for myself

parent b08dedb5
...@@ -255,6 +255,8 @@ static int Open (stream_t *stream, const char *path) ...@@ -255,6 +255,8 @@ static int Open (stream_t *stream, const char *path)
int ret = VLC_EGENERIC; int ret = VLC_EGENERIC;
int comp[2]; int comp[2];
/* We use two pipes rather than one stream socket pair, so that we can
* use vmsplice() on Linux. */
if (pipe (comp) == 0) if (pipe (comp) == 0)
{ {
cloexec (comp[1]); cloexec (comp[1]);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment