~n-muench/ubuntu/oneiric/open-vm-tools/open-vm-tools.fix-836277

« back to all changes in this revision

Viewing changes to modules/linux/vmci/vmciDatagram.h

  • Committer: Bazaar Package Importer
  • Author(s): Devid Antonio Filoni
  • Date: 2008-08-15 21:21:40 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080815212140-05fhxj8wroosysmj
Tags: 2008.08.08-109361-1ubuntu1
* Merge from Debian unstable (LP: #258393), remaining Ubuntu change:
  - add ubuntu_toolchain_FTBFS.dpatch patch, fix FTBFS
* Update ubuntu_toolchain_FTBFS.dpatch patch for the new version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*********************************************************
 
2
 * Copyright (C) 2006 VMware, Inc. All rights reserved.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify it
 
5
 * under the terms of the GNU General Public License as published by the
 
6
 * Free Software Foundation version 2 and no later version.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful, but
 
9
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 
10
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 
11
 * for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License along
 
14
 * with this program; if not, write to the Free Software Foundation, Inc.,
 
15
 * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 
16
 *
 
17
 *********************************************************/
 
18
 
 
19
/* 
 
20
 * vmciDatagram.h --
 
21
 *
 
22
 *      Simple Datagram API for the Linux guest driver.
 
23
 */
 
24
 
 
25
#ifndef __VMCI_DATAGRAM_H__
 
26
#define __VMCI_DATAGRAM_H__
 
27
 
 
28
#define INCLUDE_ALLOW_MODULE
 
29
#include "includeCheck.h"
 
30
 
 
31
#include "vmci_defs.h"
 
32
#include "vmci_kernel_if.h"
 
33
#include "vmci_infrastructure.h"
 
34
#include "circList.h"
 
35
#include "vmciGuestKernelAPI.h"
 
36
#include "vmci_iocontrols.h"
 
37
 
 
38
typedef struct DatagramQueueEntry {
 
39
   ListItem listItem; /* For queuing. */
 
40
   VMCIDatagram *dg;  /* Pending datagram. */
 
41
} DatagramQueueEntry;
 
42
 
 
43
typedef struct VMCIDatagramProcess {
 
44
   VMCILock   datagramQueueLock;
 
45
   VMCIHandle handle;
 
46
   VMCIHost   host;
 
47
   uint32     pendingDatagrams;
 
48
   size_t     datagramQueueSize;
 
49
   ListItem   *datagramQueue;
 
50
} VMCIDatagramProcess;
 
51
 
 
52
void VMCIDatagram_Init(void);
 
53
Bool VMCIDatagram_CheckHostCapabilities(void);
 
54
int VMCIDatagram_Dispatch(VMCIId contextID, VMCIDatagram *msg);
 
55
 
 
56
int VMCIDatagramProcess_Create(VMCIDatagramProcess **outDgmProc,
 
57
                               VMCIDatagramCreateInfo *createInfo);
 
58
void VMCIDatagramProcess_Destroy(VMCIDatagramProcess *dgmProc);
 
59
int VMCIDatagramProcess_ReadCall(VMCIDatagramProcess *dgmProc,
 
60
                                 size_t maxSize, VMCIDatagram **dg);
 
61
                
 
62
#endif //__VMCI_DATAGRAM_H__