Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mesa
Path: blob/21.2-virgl/src/android_stub/sync_stub.cpp
4558 views
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 */
10
int sync_wait(int fd, int timeout)
11
{
12
return 0;
13
}
14
15
int sync_merge(const char *name, int fd, int fd2)
16
{
17
return 0;
18
}
19
20
struct sync_file_info* sync_file_info(int32_t fd)
21
{
22
return NULL;
23
}
24
25
void sync_file_info_free(struct sync_file_info* info)
26
{
27
}
28
29
}
30
31