~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-02 04:09:08 UTC
  • mfrom: (6046.1.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20110802040908-hqz2wr82nyrk14gk
(mbp) merge 2.3 and 2.4 to trunk (Martin Pool)

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)