mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-27 12:00:22 +01:00
21 lines
304 B
C++
21 lines
304 B
C++
|
|
#include <cutils/properties.h>
|
||
|
|
#include <sync/sync.h>
|
||
|
|
#include <hardware/hardware.h>
|
||
|
|
#include <android/log.h>
|
||
|
|
#include <backtrace/Backtrace.h>
|
||
|
|
|
||
|
|
extern "C" {
|
||
|
|
|
||
|
|
/* timeout in msecs */
|
||
|
|
int sync_wait(int fd, int timeout)
|
||
|
|
{
|
||
|
|
return 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
int sync_merge(const char *name, int fd, int fd2)
|
||
|
|
{
|
||
|
|
return 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|