main.c (84a5a8014801a83d1b8d15fa7f0fde03db081530) | main.c (922a01a013d2270682a188258cbccacfecf8129c) |
---|---|
1/* 2 * Copyright 6WIND S.A., 2014 3 * 4 * This work is licensed under the terms of the GNU GPL, version 2 or 5 * (at your option) any later version. See the COPYING file in the 6 * top-level directory. 7 */ 8 9#include "qemu/osdep.h" 10#include "qapi/error.h" 11#include "qemu/cutils.h" | 1/* 2 * Copyright 6WIND S.A., 2014 3 * 4 * This work is licensed under the terms of the GNU GPL, version 2 or 5 * (at your option) any later version. See the COPYING file in the 6 * top-level directory. 7 */ 8 9#include "qemu/osdep.h" 10#include "qapi/error.h" 11#include "qemu/cutils.h" |
12 | 12#include "qemu/option.h" |
13#include "ivshmem-server.h" 14 15#define IVSHMEM_SERVER_DEFAULT_VERBOSE 0 16#define IVSHMEM_SERVER_DEFAULT_FOREGROUND 0 17#define IVSHMEM_SERVER_DEFAULT_PID_FILE "/var/run/ivshmem-server.pid" 18#define IVSHMEM_SERVER_DEFAULT_UNIX_SOCK_PATH "/tmp/ivshmem_socket" 19#define IVSHMEM_SERVER_DEFAULT_SHM_PATH "ivshmem" 20#define IVSHMEM_SERVER_DEFAULT_SHM_SIZE (4*1024*1024) --- 253 unchanged lines hidden --- | 13#include "ivshmem-server.h" 14 15#define IVSHMEM_SERVER_DEFAULT_VERBOSE 0 16#define IVSHMEM_SERVER_DEFAULT_FOREGROUND 0 17#define IVSHMEM_SERVER_DEFAULT_PID_FILE "/var/run/ivshmem-server.pid" 18#define IVSHMEM_SERVER_DEFAULT_UNIX_SOCK_PATH "/tmp/ivshmem_socket" 19#define IVSHMEM_SERVER_DEFAULT_SHM_PATH "ivshmem" 20#define IVSHMEM_SERVER_DEFAULT_SHM_SIZE (4*1024*1024) --- 253 unchanged lines hidden --- |