GCC Code Coverage Report


Directory: cvmfs/
File: cvmfs/fuse_main.h
Date: 2024-04-21 02:33:16
Exec Total Coverage
Lines: 0 4 0.0%
Branches: 0 0 -%

Line Branch Exec Source
1 /**
2 * This file is part of the CernVM File System.
3 */
4
5 #ifndef CVMFS_FUSE_MAIN_H_
6 #define CVMFS_FUSE_MAIN_H_
7
8 // The entry point in libcvmfs_stub to handover from cvmfs2
9 struct CvmfsStubExports {
10 CvmfsStubExports()
11 : version(0)
12 , size(sizeof(CvmfsStubExports))
13 , fn_main(NULL)
14 {}
15
16 int version;
17 int size;
18 int (*fn_main)(int, char**);
19 };
20
21 #endif // CVMFS_FUSE_MAIN_H_
22