1 // Copyright (C) 2023 The Android Open Source Project
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14
15 extern "C" {
16
qemu_pipe_open_ns(const char *,const char *,int)17 int qemu_pipe_open_ns(const char*, const char*, int) {
18 return -1;
19 }
20
qemu_pipe_open(const char *)21 int qemu_pipe_open(const char*) {
22 return -1;
23 }
24
qemu_pipe_close(int)25 void qemu_pipe_close(int) {
26 }
27
qemu_pipe_read(int,void *,int)28 int qemu_pipe_read(int, void*, int) {
29 return -1;
30 }
31
qemu_pipe_write(int,const void *,int)32 int qemu_pipe_write(int, const void*, int) {
33 return -1;
34 }
35
qemu_pipe_try_again(int)36 int qemu_pipe_try_again(int) {
37 return -1;
38 }
39
qemu_pipe_print_error(int)40 void qemu_pipe_print_error(int) {
41 }
42
43 } // extern "C"