1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
|
} else {
retval = NULL;
XVFS_DEBUG_PUTS("... found no registered filesystem.");
}
XVFS_DEBUG_LEAVE;
return(retval);
}
static int xvfs_tclfs_dispatch_stat(Tcl_Obj *path, Tcl_StatBuf *statBuf) {
struct xvfs_tclfs_instance_info *instanceInfo;
instanceInfo = xvfs_tclfs_dispatch_pathToInfo(path);
if (!instanceInfo) {
|
>
>
>
>
>
>
>
>
|
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
|
} else {
retval = NULL;
XVFS_DEBUG_PUTS("... found no registered filesystem.");
}
XVFS_DEBUG_LEAVE;
return(retval);
/*
* UNREACH: We do no need the more specific check because we
* claim everything under the root, but we want to suppress
* a warning about it not being used.
*/
xvfs_tclfs_pathInFilesystem(NULL, NULL, NULL);
return(NULL);
}
static int xvfs_tclfs_dispatch_stat(Tcl_Obj *path, Tcl_StatBuf *statBuf) {
struct xvfs_tclfs_instance_info *instanceInfo;
instanceInfo = xvfs_tclfs_dispatch_pathToInfo(path);
if (!instanceInfo) {
|