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

« back to all changes in this revision

Viewing changes to services/plugins/vmbackup/syncDriverOps.c

  • Committer: Evan Broder
  • Date: 2010-03-21 23:26:53 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: broder@mit.edu-20100321232653-5a57r7v7ch4o6byv
Merging shared upstream rev into target branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
265
265
/*
266
266
 *-----------------------------------------------------------------------------
267
267
 *
268
 
 *  VmBackupSyncDriverAbort --
269
 
 *
270
 
 *    Does nothing.
271
 
 *
272
 
 * Result
273
 
 *    TRUE.
274
 
 *
275
 
 * Side effects:
276
 
 *    None.
277
 
 *
278
 
 *-----------------------------------------------------------------------------
279
 
 */
280
 
 
281
 
static Bool
282
 
VmBackupSyncDriverAbort(VmBackupState *state,
283
 
                        void *clientData)
284
 
{
285
 
   g_debug("*** %s\n", __FUNCTION__);
286
 
   return TRUE;
287
 
}
288
 
 
289
 
 
290
 
/*
291
 
 *-----------------------------------------------------------------------------
292
 
 *
293
268
 *  VmBackupSyncDriverSnapshotDone --
294
269
 *
295
270
 *    Starts an asynchronous operation to disable the sync driver.
371
346
 
372
347
   provider = Util_SafeMalloc(sizeof *provider);
373
348
   provider->start = VmBackupSyncDriverStart;
374
 
   provider->abort = VmBackupSyncDriverAbort;
375
349
   provider->snapshotDone = VmBackupSyncDriverSnapshotDone;
376
350
   provider->release = VmBackupSyncDriverRelease;
377
351
   provider->clientData = NULL;