mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 05:18:44 +00:00
The timer thread for the hard timeout was leaking and thus the thread only exited on timeout
26 lines
301 B
C
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();
|
|
|