mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
[Feature #20306] Implement ruby_free_at_exit_p
ruby_free_at_exit_p is a way for extensions to determine whether they should free all memory at shutdown.
This commit is contained in:
parent
315bde5a0f
commit
83618f2cfa
2 changed files with 13 additions and 0 deletions
|
@ -49,6 +49,13 @@ int ruby_vm_destruct(ruby_vm_t *vm);
|
|||
*/
|
||||
void ruby_vm_at_exit(void(*func)(ruby_vm_t *));
|
||||
|
||||
/**
|
||||
* Returns whether the Ruby VM will free all memory at shutdown.
|
||||
*
|
||||
* @return true if free-at-exit is enabled, false otherwise.
|
||||
*/
|
||||
bool ruby_free_at_exit_p(void);
|
||||
|
||||
RBIMPL_SYMBOL_EXPORT_END()
|
||||
|
||||
#endif /* RUBY_VM_H */
|
||||
|
|
6
vm.c
6
vm.c
|
@ -4443,6 +4443,12 @@ rb_ruby_debug_ptr(void)
|
|||
|
||||
bool rb_free_at_exit = false;
|
||||
|
||||
bool
|
||||
ruby_free_at_exit_p(void)
|
||||
{
|
||||
return rb_free_at_exit;
|
||||
}
|
||||
|
||||
/* iseq.c */
|
||||
VALUE rb_insn_operand_intern(const rb_iseq_t *iseq,
|
||||
VALUE insn, int op_no, VALUE op,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue