Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions ext/concurrent-ruby-ext/atomic_reference.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,15 @@ VALUE ir_get_and_set(VALUE self, VALUE new_value) {

VALUE ir_compare_and_set(volatile VALUE self, VALUE expect_value, VALUE new_value) {
#if defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ >= 1050
#if defined(__i386__) || defined(__ppc__)
if (OSAtomicCompareAndSwap32(expect_value, new_value, &DATA_PTR(self))) {
Copy link
Member

@eregon eregon Dec 10, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
if (OSAtomicCompareAndSwap32(expect_value, new_value, &DATA_PTR(self))) {
if (OSAtomicCompareAndSwap32(expect_value, new_value, (VALUE*) &DATA_PTR(self))) {

Can you try this?
I think it should solve your warning on Ruby 3.2

return Qtrue;
}
#else
if (OSAtomicCompareAndSwap64(expect_value, new_value, &DATA_PTR(self))) {
return Qtrue;
}
#endif
#elif defined(__sun)
/* Assuming VALUE is uintptr_t */
/* Based on the definition of uintptr_t from /usr/include/sys/int_types.h */
Expand Down