Overview
| Comment: | Cleanup |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | pure-c |
| Files: | files | file ages | folders |
| SHA3-256: |
c69f6f1b5a0e1fc8d52b769d4f839bfc |
| User & Date: | rkeene on 2019-12-02 02:47:17.867 |
| Other Links: | branch diff | manifest | tags |
Context
|
2019-12-02
| ||
| 02:50 | More cleanup check-in: 1d38520446 user: rkeene tags: pure-c | |
| 02:47 | Cleanup check-in: c69f6f1b5a user: rkeene tags: pure-c | |
| 02:44 | Implemented completed xvfs-create-c check-in: 0ffa676110 user: rkeene tags: pure-c | |
Changes
Modified xvfs-create-c.c
from [c64f7b2f94]
to [68ba595bfe].
| ︙ | |||
260 261 262 263 264 265 266 267 268 269 270 271 272 273 | 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 | + + + + + |
}
fprintf(outfp, "XVFS_NAME_LOOKUP_ERROR");
fprintf(outfp, "\n");
fprintf(outfp, "\t};\n");
}
for (idx2 = 0; idx2 < xvfs_state->child_count; idx2++) {
free(xvfs_state->children[idx2]);
}
free(xvfs_state->children);
fprintf(outfp, "\tstatic const long * const pathIndex_hashTable[%i] = {\n", bucket_count);
for (idx1 = 0; idx1 < bucket_count; idx1++) {
fprintf(outfp, "\t\tpathIndex_hashTable_%i,\n", idx1);
}
fprintf(outfp, "\t};\n");
return;
|
| ︙ |