]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/sys/file_internal.h
xnu-2050.7.9.tar.gz
[apple/xnu.git] / bsd / sys / file_internal.h
index 9fcb4d1f32f60b9aba17e32770ba2b7ba0424d4c..473415d1d399ad2b1c2f7ac35bf220e1d58855b5 100644 (file)
@@ -139,7 +139,6 @@ typedef enum {
 #define FG_NOSIGPIPE   0x40    /* don't deliver SIGPIPE with EPIPE return */
 
 struct fileglob {
-       LIST_ENTRY(fileglob) f_list;/* list of active files */
        LIST_ENTRY(fileglob) f_msglist;/* list of active files */
        int32_t fg_flag;                /* see fcntl.h */
        file_type_t fg_type;            /* descriptor type */
@@ -172,9 +171,7 @@ struct fileglob {
 };
 
 #ifdef __APPLE_API_PRIVATE
-LIST_HEAD(filelist, fileglob);
 LIST_HEAD(fmsglist, fileglob);
-extern struct filelist filehead;       /* head of list of open files */
 extern struct fmsglist fmsghead;       /* head of list of open files */
 extern int maxfiles;                   /* kernel limit on number of open files */
 extern int nfiles;                     /* actual number of open files */