Overview
| Comment: | More work on splitting up modes |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
3e44e1def1cbf31a1ac810522b72d8d9 |
| User & Date: | rkeene on 2019-05-02 23:37:38.010 |
| Other Links: | manifest | tags |
Context
|
2019-05-03
| ||
| 13:30 | Added start of flexible mode check-in: 88f96696b7 user: rkeene tags: trunk | |
|
2019-05-02
| ||
| 23:37 | More work on splitting up modes check-in: 3e44e1def1 user: rkeene tags: trunk | |
| 23:11 | Added start of split into standalone/client/flexible modes check-in: acfc5037c6 user: rkeene tags: trunk | |
Changes
Modified Makefile
from [f8b4f602df]
to [0d56f35fbc].
| 1 2 3 4 5 6 7 8 | - + |
|
| ︙ |
Modified xvfs-core.c
from [d180e1465c]
to [6b6c879bfa].
1 2 3 4 5 6 7 8 9 10 11 | 1 2 3 4 5 6 7 8 9 10 11 12 | + |
#include <xvfs-core.h>
#include <string.h>
#include <tcl.h>
#if defined(XVFS_MODE_SERVER) || defined(XVFS_MODE_STANDALONE) || defined(XVFS_MODE_FLEXIBLE)
#define XVFS_ROOT_MOUNTPOINT "//xvfs:/"
struct xvfs_tclfs_instance_info {
struct Xvfs_FSInfo *fsInfo;
Tcl_Obj *mountpoint;
};
|
| ︙ | |||
72 73 74 75 76 77 78 79 | 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | + - + | const char *pathStr; pathStr = xvfs_relativePath(path, instanceInfo); fprintf(stderr, "Called open(%s)!\n", pathStr); return(NULL); } #endif /* XVFS_MODE_SERVER || XVFS_MODE_STANDALONE || XVFS_MODE_FLEIXBLE */ |
| ︙ | |||
139 140 141 142 143 144 145 | 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 | - + |
if (!xvfs_tclfs_Info) {
if (interp) {
Tcl_SetResult(interp, "Unable to allocate Tcl_Filesystem object", NULL);
}
return(TCL_ERROR);
}
|
| ︙ | |||
186 187 188 189 190 191 192 | 188 189 190 191 192 193 194 195 196 197 198 199 200 201 | - + + + | } return(tcl_ret); } return(TCL_OK); } |
Modified xvfs-core.h
from [f7f064c7b1]
to [51b24fa92d].
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | - - + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - |
|