Check-in [5bd7399e05]
Overview
Comment:Minor update
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | tcl-ops
Files: files | file ages | folders
SHA1: 5bd7399e058da3e81a8884b96e0e896b8cc97525
User & Date: rkeene on 2014-11-06 18:29:57
Other Links: branch diff | manifest | tags
Context
2014-11-07
04:52
Added support for an "appfs-cache" script calling sqlite3 directly in appfsd check-in: c374111c37 user: rkeene tags: tcl-ops
2014-11-06
18:29
Minor update check-in: 5bd7399e05 user: rkeene tags: tcl-ops
17:11
Work towards gutting AppFSd to rewrite check-in: aca3a93d56 user: rkeene tags: tcl-ops
Changes

Modified appfsd.c from [8dc47d059d] to [169ff6cab0].

61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
	union {
		struct {
			int childcount;
		} dir;
		struct {
			int executable;
			off_t size;
			char sha1[41];
		} file;
		struct {
			off_t size;
			char source[256];
		} symlink;
	} typeinfo;
};







<







61
62
63
64
65
66
67

68
69
70
71
72
73
74
	union {
		struct {
			int childcount;
		} dir;
		struct {
			int executable;
			off_t size;

		} file;
		struct {
			off_t size;
			char source[256];
		} symlink;
	} typeinfo;
};