Changeset 68569 in vbox for trunk/src/VBox/Additions/solaris/SharedFolders
- Timestamp:
- Aug 31, 2017 12:10:36 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 117786
- Location:
- trunk/src/VBox/Additions/solaris/SharedFolders
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/solaris/SharedFolders/vboxfs_prov.c
r65124 r68569 1 /* $Id$ */ 1 2 /** @file 2 3 * VirtualBox File System for Solaris Guests, provider implementation. … … 42 43 #include <sys/dirent.h> 43 44 #include <sys/file.h> 45 #undef u /* /usr/include/sys/user.h:249:1 is where this is defined to (curproc->p_user). very cool. */ 46 44 47 #include "vboxfs_prov.h" 45 #ifdef u46 #undef u47 #endif48 48 49 49 #define SFPROV_VERSION 1 -
trunk/src/VBox/Additions/solaris/SharedFolders/vboxfs_vfs.c
r62529 r68569 1 /* $Id$ */ 1 2 /** @file 2 3 * VirtualBox File System for Solaris Guests, VFS implementation. … … 39 40 #include <sys/vfs.h> 40 41 #if !defined(VBOX_VFS_SOLARIS_10U6) 41 # include <sys/vfs_opreg.h>42 # include <sys/vfs_opreg.h> 42 43 #endif 43 44 #include <sys/pathname.h> 44 45 #include <sys/cmn_err.h> 46 #undef u /* /usr/include/sys/user.h:249:1 is where this is defined to (curproc->p_user). very cool. */ 47 45 48 #include "vboxfs_prov.h" 46 49 #include "vboxfs_vnode.h" … … 48 51 #include "vboxfs.h" 49 52 50 #ifdef u51 #undef u52 #endif53 53 54 54 #define VBOXSOLQUOTE2(x) #x -
trunk/src/VBox/Additions/solaris/SharedFolders/vboxfs_vnode.c
r62529 r68569 1 /* $Id$ */ 1 2 /** @file 2 3 * VirtualBox File System for Solaris Guests, vnode implementation. … … 86 87 #include <vm/pvn.h> 87 88 #if !defined(VBOX_VFS_SOLARIS_10U6) 88 # include <sys/vfs_opreg.h>89 # include <sys/vfs_opreg.h> 89 90 #endif 90 91 #include <sys/pathname.h> … … 93 94 #include <sys/time.h> 94 95 #include <sys/cmn_err.h> 96 #undef u /* /usr/include/sys/user.h:249:1 is where this is defined to (curproc->p_user). very cool. */ 97 95 98 #include "vboxfs_prov.h" 96 99 #include "vboxfs_vnode.h"
Note:
See TracChangeset
for help on using the changeset viewer.