2017-10-31 08:07:16 +00:00
|
|
|
/*
|
2017-12-03 15:22:49 +00:00
|
|
|
Looking Glass - KVM FrameRelay (KVMFR) Client
|
2017-10-31 08:07:16 +00:00
|
|
|
Copyright (C) 2017 Geoffrey McRae <geoff@hostfission.com>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it under
|
|
|
|
the terms of the GNU General Public License as published by the Free Software
|
|
|
|
Foundation; either version 2 of the License, or (at your option) any later
|
|
|
|
version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
|
|
PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
|
|
this program; if not, write to the Free Software Foundation, Inc., 59 Temple
|
|
|
|
Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
2017-10-19 06:06:42 +00:00
|
|
|
#include <stddef.h>
|
2017-10-19 05:00:57 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
bool ivshmem_connect(const char * unix_socket);
|
2017-10-19 07:50:42 +00:00
|
|
|
void ivshmem_disconnect();
|
2017-10-19 06:54:00 +00:00
|
|
|
bool ivshmem_process();
|
2017-10-19 06:06:42 +00:00
|
|
|
|
2017-10-19 07:50:42 +00:00
|
|
|
uint16_t ivshmem_get_id();
|
|
|
|
void * ivshmem_get_map();
|
2017-10-19 14:03:39 +00:00
|
|
|
size_t ivshmem_get_map_size();
|
|
|
|
|
|
|
|
enum IVSHMEMWaitResult
|
|
|
|
{
|
|
|
|
IVSHMEM_WAIT_RESULT_OK,
|
|
|
|
IVSHMEM_WAIT_RESULT_TIMEOUT,
|
|
|
|
IVSHMEM_WAIT_RESULT_ERROR
|
|
|
|
};
|
|
|
|
|
2017-12-05 10:50:24 +00:00
|
|
|
enum IVSHMEMWaitResult ivshmem_wait_irq(uint16_t vector, unsigned int timeout);
|
2017-10-19 14:03:39 +00:00
|
|
|
bool ivshmem_kick_irq(uint16_t clientID, uint16_t vector);
|