3eeb751122
and VMware legal: - Add a dual BSD-2 Clause/GPLv2 LICENSE file in the VMCI directory - Remove the use of "All Rights Reserved" - Per best practice, remove copyright/license info from Makefile Reviewed by: imp, emaste, jhb, Vishnu Dasa <vdasa@vmware.com> Approved by: VMware legal via Mark Peek <markpeek@vmware.com> Differential Revision: https://reviews.freebsd.org/D14979
24 lines
473 B
C
24 lines
473 B
C
/*-
|
|
* Copyright (c) 2018 VMware, Inc.
|
|
*
|
|
* SPDX-License-Identifier: (BSD-2-Clause OR GPL-2.0)
|
|
*
|
|
* $FreeBSD$
|
|
*/
|
|
|
|
/* Event code for the vmci guest driver. */
|
|
|
|
#ifndef _VMCI_EVENT_H_
|
|
#define _VMCI_EVENT_H_
|
|
|
|
#include "vmci_call_defs.h"
|
|
#include "vmci_defs.h"
|
|
|
|
int vmci_event_init(void);
|
|
void vmci_event_exit(void);
|
|
void vmci_event_sync(void);
|
|
int vmci_event_dispatch(struct vmci_datagram *msg);
|
|
bool vmci_event_check_host_capabilities(void);
|
|
|
|
#endif /* !_VMCI_EVENT_H_ */
|