Changeset 3951:e96f68ad3c68 in roaraudio for libroaross


Ignore:
Timestamp:
06/25/10 01:39:25 (14 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

only test for O_ASYNC if OS has a O_ASYNC

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libroaross/libroaross.c

    r3892 r3951  
    570570 */ 
    571571 
     572#ifdef O_ASYNC 
    572573 if ( flags & O_ASYNC ) { 
    573574  ROAR_DBG("_open_file(pathname='%s', flags=0x%x) = -1 // not supported O_ASYNC", pathname, flags); 
     
    575576  return -1; 
    576577 } 
     578#endif 
    577579 
    578580 if ( (flags & O_DIRECTORY) || (flags & O_EXCL) ) { 
Note: See TracChangeset for help on using the changeset viewer.