summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'qemu_pipe/include/qemu_pipe.h')
-rw-r--r--qemu_pipe/include/qemu_pipe.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/qemu_pipe/include/qemu_pipe.h b/qemu_pipe/include/qemu_pipe.h
index 16486c087..098749899 100644
--- a/qemu_pipe/include/qemu_pipe.h
+++ b/qemu_pipe/include/qemu_pipe.h
@@ -28,8 +28,10 @@ extern "C" {
28// This file descriptor can be used as a standard pipe/socket descriptor. 28// This file descriptor can be used as a standard pipe/socket descriptor.
29// 29//
30// 'pipeName' is the name of the emulator service you want to connect to, 30// 'pipeName' is the name of the emulator service you want to connect to,
31// and must begin with 'pipe:' (e.g. 'pipe:camera' or 'pipe:opengles'). 31// and should begin with 'pipe:' (e.g. 'pipe:camera' or 'pipe:opengles').
32// 32// For backward compatibility, the 'pipe:' prefix can be omitted, and in
33// that case, qemu_pipe_open will add it for you.
34
33// On success, return a valid file descriptor, or -1/errno on failure. E.g.: 35// On success, return a valid file descriptor, or -1/errno on failure. E.g.:
34// 36//
35// EINVAL -> unknown/unsupported pipeName 37// EINVAL -> unknown/unsupported pipeName