vfs_stamping: make opaque.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Andrew Borodin 2019-01-26 12:56:07 +03:00
parent 66cf2a5a75
commit d451d5978f
2 changed files with 8 additions and 8 deletions

View File

@ -92,6 +92,14 @@ int vfs_timeout = 60; /* VFS timeout in seconds */
/*** file scope type declarations ****************************************************************/
struct vfs_stamping
{
struct vfs_class *v;
vfsid id;
struct vfs_stamping *next;
struct timeval time;
};
/*** file scope variables ************************************************************************/
static struct vfs_stamping *stamps;

View File

@ -14,14 +14,6 @@
/*** structures declarations (and typedefs of structures)*****************************************/
struct vfs_stamping
{
struct vfs_class *v;
vfsid id;
struct vfs_stamping *next;
struct timeval time;
};
/*** global variables defined in .c file *********************************************************/
/*** declarations of public functions ************************************************************/