We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
file_stream::close()
The following code is unexpectedly non-terminating.
#include <tpie/tpie.h> #include <tpie/tempname.h> #include <tpie/file_stream.h> int main(int argc, char* argv[]) { tpie::tpie_init(); tpie::get_memory_manager().set_limit(1024 * 1024 * 1024); tpie::tpie_finish(); tpie::tpie_init(); tpie::get_memory_manager().set_limit(1024 * 1024 * 1024); { tpie::temp_file f; tpie::file_stream<int> fs; fs.open(f); fs.write(42); fs.close(); // <-- does not terminate! } tpie::tpie_finish(); }
The problem lies in line 368 in stream_base.cpp is blocking when calling wait_for_request_done(l).
wait_for_request_done(l)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following code is unexpectedly non-terminating.
The problem lies in line 368 in stream_base.cpp is blocking when calling
wait_for_request_done(l)
.The text was updated successfully, but these errors were encountered: