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