0cd8e3e76b
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
31 lines
977 B
C++
31 lines
977 B
C++
/*
|
|
Copyright (c) 2013 Microsoft Corporation. All rights reserved.
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
Author: Leonardo de Moura
|
|
*/
|
|
#pragma once
|
|
#include <cstdlib>
|
|
|
|
namespace lean {
|
|
#if defined(LEAN_USE_SPLIT_STACK)
|
|
// If we are using split stacks, we don't need to check anything
|
|
inline void check_stack(char const * ) { }
|
|
inline size_t get_stack_size(bool ) { return 8192*1024; }
|
|
inline void save_stack_info(bool = true) {}
|
|
inline size_t get_used_stack_size() { return 0; }
|
|
inline size_t get_available_stack_size() { return 8192*1024; }
|
|
#else
|
|
size_t get_stack_size(bool main);
|
|
void save_stack_info(bool main = true);
|
|
size_t get_used_stack_size();
|
|
size_t get_available_stack_size();
|
|
/**
|
|
\brief Throw an exception if the amount of available stack space is low.
|
|
|
|
\remark The optional argument \c component_name is used to inform the
|
|
user which module is the potential offender.
|
|
*/
|
|
void check_stack(char const * component_name);
|
|
#endif
|
|
}
|