Get rid of other-OS headers in .depend
[fio.git] / file.h
diff --git a/file.h b/file.h
index 3b4ed0b9acadf206392f3826854d67fac7407f00..fa8c1d236c498da467a5ea716642d66ec56abef3 100644 (file)
--- a/file.h
+++ b/file.h
@@ -47,13 +47,8 @@ struct fio_file {
        struct flist_head hash_list;
        enum fio_filetype filetype;
 
-       /*
-        * A file may not be a file descriptor, let the io engine decide
-        */
-       union {
-               unsigned long file_data;
-               int fd;
-       };
+       void *file_data;
+       int fd;
 
        /*
         * filename and possible memory mapping
@@ -140,6 +135,7 @@ extern int __must_check generic_close_file(struct thread_data *, struct fio_file
 extern int __must_check generic_get_file_size(struct thread_data *, struct fio_file *);
 extern int __must_check pre_read_files(struct thread_data *);
 extern int add_file(struct thread_data *, const char *);
+extern int add_file_exclusive(struct thread_data *, const char *);
 extern void get_file(struct fio_file *);
 extern int __must_check put_file(struct thread_data *, struct fio_file *);
 extern void put_file_log(struct thread_data *, struct fio_file *);