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

« back to all changes in this revision

Viewing changes to modules/freebsd/vmmemctl/vm_basic_types.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:
339
339
 * Type big enough to hold an integer between 0..100
340
340
 */
341
341
typedef uint8 Percent;
342
 
#define asPercent(v)    ((Percent)(v))
343
 
#define CHOOSE_PERCENT  asPercent(-1)
 
342
#define AsPercent(v)    ((Percent)(v))
 
343
#define CHOOSE_PERCENT  AsPercent(101)
344
344
 
345
345
 
346
346
typedef uintptr_t VA;
372
372
typedef User_CartelID User_CartelGroupID;
373
373
#define INVALID_CARTELGROUP_ID INVALID_CARTEL_ID
374
374
 
 
375
typedef uint32 Worldlet_ID;
 
376
#define INVALID_WORLDLET_ID ((Worldlet_ID)0)
 
377
 
375
378
/* world page number */
376
379
typedef uint32    WPN;
377
380