When there is no file (zPath)
  Linux: fsync(fd)  Result: 0
  AIX: fsync(fd) result: -1 

need file check
  if( fsync(fd) ) 
  if( osAccess(zPath, 0) == 0 && fsync(fd) ) 

But 
I'm not certainty





--
View this message in context: 
http://sqlite.1065341.n5.nabble.com/fsync-of-directories-on-AIX-tp4666p75918.html
Sent from the SQLite mailing list archive at Nabble.com.
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to