1 #include <cutils/properties.h> 2 #include <sync/sync.h> 3 #include <hardware/hardware.h> 4 #include <android/log.h> 5 #include <backtrace/Backtrace.h> 6 7 extern "C" { 8 9 /* timeout in msecs */ sync_wait(int fd,int timeout)10int sync_wait(int fd, int timeout) 11 { 12 return 0; 13 } 14 sync_merge(const char * name,int fd,int fd2)15int sync_merge(const char *name, int fd, int fd2) 16 { 17 return 0; 18 } 19 sync_file_info(int32_t fd)20struct sync_file_info* sync_file_info(int32_t fd) 21 { 22 return NULL; 23 } 24 sync_file_info_free(struct sync_file_info * info)25void sync_file_info_free(struct sync_file_info* info) 26 { 27 } 28 29 } 30