You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#pragma once
|
|
|
|
#include <csetjmp>
|
|
|
|
namespace drake {
|
|
namespace solvers {
|
|
namespace internal {
|
|
|
|
// Returns a reference to a thread-local setjmp buffer.
|
|
std::jmp_buf& get_per_thread_csdp_jmp_buf();
|
|
|
|
} // namespace internal
|
|
} // namespace solvers
|
|
} // namespace drake
|