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 7extern "C" { 8 9/* timeout in msecs */ 10int sync_wait(int fd, int timeout) 11{ 12 return 0; 13} 14 15int sync_merge(const char *name, int fd, int fd2) 16{ 17 return 0; 18} 19 20struct sync_file_info* sync_file_info(int32_t fd) 21{ 22 return NULL; 23} 24 25void sync_file_info_free(struct sync_file_info* info) 26{ 27} 28 29} 30