Changeset 1666:ae1d6f0de812 in roaraudio


Ignore:
Timestamp:
05/09/09 12:51:11 (15 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

sockets do not need any fdatasync() call on posix systems

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libroar/vio.c

    r1665 r1666  
    222222  return -1; 
    223223 
    224  return roar_vio_open_fh(calls, fh); 
     224 if ( roar_vio_open_fh(calls, fh) == -1 ) 
     225  return -1; 
     226 
     227 calls->sync = roar_vio_null_sync; 
     228 
     229 return 0; 
    225230} 
    226231 
Note: See TracChangeset for help on using the changeset viewer.