Edit

IABSD.fr/xenocara/lib/mesa/src/android_stub/sync_stub.cpp

Branch :

  • Show log

    Commit

  • Author : jsg
    Date : 2023-11-02 04:31:01
    Hash : 60059fee
    Message : Import Mesa 23.1.9

  • lib/mesa/src/android_stub/sync_stub.cpp
  • #include <sync/sync.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;
    }
    
    struct sync_file_info* sync_file_info(int32_t fd)
    {
       return NULL;
    }
    
    void sync_file_info_free(struct sync_file_info* info)
    {
    }
    
    }