260
261
262
263
264
265
266
267
268
269
270
271
272
273
|
}
fprintf(outfp, "XVFS_NAME_LOOKUP_ERROR");
fprintf(outfp, "\n");
fprintf(outfp, "\t};\n");
}
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;
|
>
>
>
>
>
|
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;
|