C++ timeout function -
i want realize timeout function in c++ on atmel evaluation kit.
the program should open function "start()" , if function not completed within "0.5s" should killed.
are there existing function jobs this?
regard matl
yes: std::future::wait_for
. either future_status::ready
or future_status::timeout
.
Comments
Post a Comment