~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/osutils.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-08-15 13:49:38 UTC
  • mfrom: (6060.3.1 fix-last-revno-args)
  • Revision ID: pqm@pqm.ubuntu.com-20110815134938-4fuo63g4v2hj8jdt
(jelmer) Cope with the localhost having the name 'localhost' when running
 the test suite. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
2487
2487
    is_local_pid_dead = win32utils.is_local_pid_dead
2488
2488
else:
2489
2489
    is_local_pid_dead = _posix_is_local_pid_dead
 
2490
 
 
2491
 
 
2492
def fdatasync(fileno):
 
2493
    """Flush file contents to disk if possible.
 
2494
    
 
2495
    :param fileno: Integer OS file handle.
 
2496
    :raises TransportNotPossible: If flushing to disk is not possible.
 
2497
    """
 
2498
    fn = getattr(os, 'fdatasync', getattr(os, 'fsync', None))
 
2499
    if fn is not None:
 
2500
        fn(fileno)