Revision c8352650
Added by David Sorber over 9 years ago
| software/photo_compress_archiver/PhotoCompressArchiver.cc | ||
|---|---|---|
|
++sublist_idx;
|
||
|
}
|
||
|
|
||
|
#if 1
|
||
|
// DEBUGGING
|
||
|
uint32_t idx = 0;
|
||
|
for (auto outfile : output_filenames)
|
||
|
{
|
||
|
OUT(std::cout << "T[" << tid << "] output file: " << outfile
|
||
|
<< "\ninput file: " << exec_argv[idx++] << std::endl;)
|
||
|
}
|
||
|
continue;
|
||
|
#endif
|
||
|
|
||
|
// Add a nullptr to the end of the argv array as a terminator
|
||
|
exec_argv.push_back(nullptr);
|
||
|
|
||
| ... | ... | |
|
int stat_rc = 0;
|
||
|
struct stat statbuf;
|
||
|
double complete_percent = 0.0;
|
||
|
while (output_idx < output_filenames.size())
|
||
|
while (output_idx < (output_filenames.size() - 1))
|
||
|
{
|
||
|
// Poll, waiting for output file X + 1 to exist
|
||
|
bailout_ctr = 0;
|
||
WIP commit, stashing these debugging changes so I can go mobile.