mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 09:41:44 +00:00
1d990201f9
VMCI event code that manages event handlers and handles callbacks when specific events fire. Signed-off-by: George Zhang <georgezhang@vmware.com> Acked-by: Andy king <acking@vmware.com> Acked-by: Dmitry Torokhov <dtor@vmware.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
26 lines
770 B
C
26 lines
770 B
C
/*
|
|
* VMware VMCI Driver
|
|
*
|
|
* Copyright (C) 2012 VMware, Inc. All rights reserved.
|
|
*
|
|
* 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 version 2 and no 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.
|
|
*/
|
|
|
|
#ifndef __VMCI_EVENT_H__
|
|
#define __VMCI_EVENT_H__
|
|
|
|
#include <linux/vmw_vmci_api.h>
|
|
|
|
int vmci_event_init(void);
|
|
void vmci_event_exit(void);
|
|
int vmci_event_dispatch(struct vmci_datagram *msg);
|
|
|
|
#endif /*__VMCI_EVENT_H__ */
|