jcs's openbsd hax
openbsd
1/* Public domain. */
2
3#ifndef _LINUX_SYNC_FILE_H
4#define _LINUX_SYNC_FILE_H
5
6#include <linux/dma-fence.h>
7#include <linux/dma-fence-array.h>
8#include <linux/ktime.h>
9
10struct sync_file {
11 struct file *file;
12 struct dma_fence *fence;
13};
14
15struct dma_fence *sync_file_get_fence(int);
16struct sync_file *sync_file_create(struct dma_fence *);
17
18#endif