xref: /openbsd-src/sys/dev/pci/drm/include/linux/sync_file.h (revision 6ca44032e7be0d795b9f13c99fbce059e942c15d)
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 
10 struct sync_file {
11 	struct file *file;
12 	struct dma_fence *fence;
13 };
14 
15 struct dma_fence *sync_file_get_fence(int);
16 struct sync_file *sync_file_create(struct dma_fence *);
17 
18 #endif
19