3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-15 05:18:44 +00:00
z3/src/util/timeout.h
Nuno Lopes 1730bc7c7f fix #4763: shell not finishing before hard timeout
The timer thread for the hard timeout was leaking and thus the thread only exited on timeout
2020-10-30 10:01:09 +00:00

26 lines
301 B
C

/*++
Copyright (c) 2006 Microsoft Corporation
Module Name:
timeout.h
Abstract:
Timeout support
Author:
Leonardo de Moura (leonardo) 2006-10-02.
Revision History:
--*/
#pragma once
void register_on_timeout_proc(void (*proc)());
void set_timeout(long ms);
void disable_timeout();