mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Moved locking VM to an atomic operation
This commit is contained in:
parent
2148ee78a5
commit
983f6d0f2a
1 changed files with 2 additions and 6 deletions
8
ractor.c
8
ractor.c
|
@ -290,7 +290,7 @@ RACTOR_PTR(VALUE self)
|
|||
return r;
|
||||
}
|
||||
|
||||
static uint32_t ractor_last_id;
|
||||
static rb_atomic_t ractor_last_id;
|
||||
|
||||
#if RACTOR_CHECK_MODE > 0
|
||||
MJIT_FUNC_EXPORTED uint32_t
|
||||
|
@ -1399,11 +1399,7 @@ ractor_next_id(void)
|
|||
{
|
||||
uint32_t id;
|
||||
|
||||
RB_VM_LOCK();
|
||||
{
|
||||
id = ++ractor_last_id;
|
||||
}
|
||||
RB_VM_UNLOCK();
|
||||
id = (uint32_t)(RUBY_ATOMIC_FETCH_ADD(ractor_last_id, 1) + 1);
|
||||
|
||||
return id;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue