/* Copyright 2001,2009-2015,2017-2018,2025 Free Software Foundation, Inc. This file is part of Guile. Guile is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Guile is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with Guile. If not, see . */ #ifndef _SCM_VM_H_ #define _SCM_VM_H_ #include SCM_API SCM scm_call_with_vm (SCM proc, SCM args); SCM_API SCM scm_call_with_stack_overflow_handler (SCM limit, SCM thunk, SCM handler); SCM_API SCM scm_vm_trace_level (void); SCM_API SCM scm_set_vm_trace_level_x (SCM level); SCM_API SCM scm_vm_engine (void); SCM_API SCM scm_set_vm_engine_x (SCM engine); SCM_API SCM scm_set_default_vm_engine_x (SCM engine); SCM_API void scm_c_set_vm_engine_x (int engine); SCM_API void scm_c_set_default_vm_engine_x (int engine); SCM_API SCM scm_load_compiled_with_vm (SCM file); #endif /* _SCM_VM_H_ */