Overview
Comment: | Slightly better optimizations |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
73cbe7370b299d6c0c26601e44080abb |
User & Date: | rkeene on 2019-05-03 22:30:03 |
Other Links: | manifest | tags |
Context
2019-05-03
| ||
22:38 | Ensure consistent UTF-8 encoding is applied throughout the file handling process check-in: d99958bdd3 user: rkeene tags: trunk | |
22:30 | Slightly better optimizations check-in: 73cbe7370b user: rkeene tags: trunk | |
22:18 | Use adler32 to hash values check-in: fb9dd5d783 user: rkeene tags: trunk | |
Changes
Modified xvfs.c.rvt from [57ce2c31b4] to [da060cbcb2].
︙ | |||
28 29 30 31 32 33 34 35 36 37 38 | 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 63 64 65 | + - - + + + + + + - + | <? package require xvfs xvfs::main $argv ?> static long xvfs_<?= $::xvfs::fsName ?>_nameToIndex(const char *path) { unsigned int pathHash; size_t pathLen; if (path == NULL) { return(XVFS_NAME_LOOKUP_ERROR); } |
︙ |