mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
Stop exporting symbols for MJIT
This commit is contained in:
parent
31f4b2d86b
commit
233ddfac54
Notes:
git
2023-03-07 05:59:44 +00:00
49 changed files with 116 additions and 193 deletions
|
@ -129,7 +129,7 @@ vm_lock_leave(rb_vm_t *vm, unsigned int *lev APPEND_LOCATION_ARGS)
|
|||
}
|
||||
}
|
||||
|
||||
MJIT_FUNC_EXPORTED void
|
||||
void
|
||||
rb_vm_lock_enter_body(unsigned int *lev APPEND_LOCATION_ARGS)
|
||||
{
|
||||
rb_vm_t *vm = GET_VM();
|
||||
|
@ -141,7 +141,7 @@ rb_vm_lock_enter_body(unsigned int *lev APPEND_LOCATION_ARGS)
|
|||
}
|
||||
}
|
||||
|
||||
MJIT_FUNC_EXPORTED void
|
||||
void
|
||||
rb_vm_lock_enter_body_nb(unsigned int *lev APPEND_LOCATION_ARGS)
|
||||
{
|
||||
rb_vm_t *vm = GET_VM();
|
||||
|
@ -153,14 +153,14 @@ rb_vm_lock_enter_body_nb(unsigned int *lev APPEND_LOCATION_ARGS)
|
|||
}
|
||||
}
|
||||
|
||||
MJIT_FUNC_EXPORTED void
|
||||
void
|
||||
rb_vm_lock_enter_body_cr(rb_ractor_t *cr, unsigned int *lev APPEND_LOCATION_ARGS)
|
||||
{
|
||||
rb_vm_t *vm = GET_VM();
|
||||
vm_lock_enter(cr, vm, vm_locked(vm), false, lev APPEND_LOCATION_PARAMS);
|
||||
}
|
||||
|
||||
MJIT_FUNC_EXPORTED void
|
||||
void
|
||||
rb_vm_lock_leave_body(unsigned int *lev APPEND_LOCATION_ARGS)
|
||||
{
|
||||
vm_lock_leave(GET_VM(), lev APPEND_LOCATION_PARAMS);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue