Differences From Artifact [9e818b560b]:
- File appfsd.c — part of check-in [ddd31f22a4] at 2014-11-07 07:14:28 on branch tcl-ops — Added a "--cachedir" option for use when not using FUSE and added the same option to "appfs-cache" (user: rkeene, size: 18565) [annotate] [blame] [check-ins using]
To Artifact [2188b35dbc]:
- File appfsd.c — part of check-in [684f97bc4e] at 2014-11-07 07:15:21 on branch tcl-ops — Clarified --cachedir (user: rkeene, size: 18674) [annotate] [blame] [check-ins using]
| ︙ | |||
790 791 792 793 794 795 796 797 798 799 800 801 802 803 | 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 | + + |
fprintf(stderr, "Unable to create TSD key for Tcl. Aborting.\n");
return(1);
}
/*
* Manually specify cache directory, without FUSE callback
* This option only works when not using FUSE, since we
* do not process it with FUSEs option processing.
*/
if (argc >= 2) {
if (strcmp(argv[0], "--cachedir") == 0) {
globalThread.cachedir = strdup(argv[1]);
argc -= 2;
argv += 2;
|
| ︙ |