blob: fb0bf2f891094bbd1766b60d5626a36b9d8d88f9 [file] [log] [blame]
David 'Digit' Turnere2762c42011-03-16 14:21:28 +01001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16#ifndef ANDROID_INCLUDE_HARDWARE_QEMU_PIPE_H
17#define ANDROID_INCLUDE_HARDWARE_QEMU_PIPE_H
18
David 'Digit' Turnerca196ed2011-04-29 16:38:51 +020019#include <sys/cdefs.h>
20
21__BEGIN_DECLS
22
David 'Digit' Turnere2762c42011-03-16 14:21:28 +010023/* Try to open a new Qemu fast-pipe. This function returns a file descriptor
24 * that can be used to communicate with a named service managed by the
25 * emulator.
26 *
27 * This file descriptor can be used as a standard pipe/socket descriptor.
28 *
29 * 'pipeName' is the name of the emulator service you want to connect to.
30 * E.g. 'opengles' or 'camera'.
31 *
32 * On success, return a valid file descriptor
33 * Returns -1 on error, and errno gives the error code, e.g.:
34 *
35 * EINVAL -> unknown/unsupported pipeName
36 * ENOSYS -> fast pipes not available in this system.
37 *
38 * ENOSYS should never happen, except if you're trying to run within a
39 * misconfigured emulator.
40 *
41 * You should be able to open several pipes to the same pipe service,
42 * except for a few special cases (e.g. GSM modem), where EBUSY will be
43 * returned if more than one client tries to connect to it.
44 */
45extern int qemu_pipe_open(const char* pipeName);
46
David 'Digit' Turnerca196ed2011-04-29 16:38:51 +020047__END_DECLS
48
David 'Digit' Turnere2762c42011-03-16 14:21:28 +010049#endif /* ANDROID_INCLUDE_HARDWARE_QEMUD_PIPE_H */