Skip to content

Commit a721bf6

Browse files
dierksenthomasvl
authored andcommitted
Migrate away from deprecated OSAtomic APIs. (protocolbuffers#4184)
* Migrate away from deprecated OSAtomic APIs.
1 parent 47b7d2c commit a721bf6

File tree

6 files changed

+20
-16
lines changed

6 files changed

+20
-16
lines changed

objectivec/GPBCodedInputStream_PackagePrivate.h

-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@
3434

3535
#import "GPBCodedInputStream.h"
3636

37-
#import <libkern/OSAtomic.h>
38-
3937
@class GPBUnknownFieldSet;
4038
@class GPBFieldDescriptor;
4139

objectivec/GPBMessage.m

+3-2
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232

3333
#import <objc/runtime.h>
3434
#import <objc/message.h>
35+
#import <stdatomic.h>
3536

3637
#import "GPBArray_PackagePrivate.h"
3738
#import "GPBCodedInputStream_PackagePrivate.h"
@@ -742,14 +743,14 @@ void GPBClearMessageAutocreator(GPBMessage *self) {
742743
void GPBPrepareReadOnlySemaphore(GPBMessage *self) {
743744
#pragma clang diagnostic push
744745
#pragma clang diagnostic ignored "-Wdirect-ivar-access"
745-
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
746746

747747
// Create the semaphore on demand (rather than init) as developers might not cause them
748748
// to be needed, and the heap usage can add up. The atomic swap is used to avoid needing
749749
// another lock around creating it.
750750
if (self->readOnlySemaphore_ == nil) {
751751
dispatch_semaphore_t worker = dispatch_semaphore_create(1);
752-
if (!OSAtomicCompareAndSwapPtrBarrier(NULL, worker, (void * volatile *)&(self->readOnlySemaphore_))) {
752+
dispatch_semaphore_t expected = nil;
753+
if (!atomic_compare_exchange_strong(&self->readOnlySemaphore_, &expected, worker)) {
753754
dispatch_release(worker);
754755
}
755756
}

objectivec/GPBMessage_PackagePrivate.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
#import "GPBMessage.h"
3636

37-
#import <libkern/OSAtomic.h>
37+
#import <stdatomic.h>
3838

3939
#import "GPBBootstrap.h"
4040

@@ -70,7 +70,7 @@ typedef struct GPBMessage_Storage *GPBMessage_StoragePtr;
7070
// Use of readOnlySemaphore_ must be prefaced by a call to
7171
// GPBPrepareReadOnlySemaphore to ensure it has been created. This allows
7272
// readOnlySemaphore_ to be only created when actually needed.
73-
dispatch_semaphore_t readOnlySemaphore_;
73+
_Atomic(dispatch_semaphore_t) readOnlySemaphore_;
7474
}
7575

7676
// Gets an extension value without autocreating the result if not found. (i.e.

objectivec/google/protobuf/Struct.pbobjc.m

+3-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

objectivec/google/protobuf/Type.pbobjc.m

+9-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/google/protobuf/compiler/objectivec/objectivec_enum.cc

+3-2
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ void EnumGenerator::GenerateSource(io::Printer* printer) {
149149

150150
printer->Print(
151151
"GPBEnumDescriptor *$name$_EnumDescriptor(void) {\n"
152-
" static GPBEnumDescriptor *descriptor = NULL;\n"
152+
" static _Atomic(GPBEnumDescriptor*) descriptor = NULL;\n"
153153
" if (!descriptor) {\n",
154154
"name", name_);
155155

@@ -192,7 +192,8 @@ void EnumGenerator::GenerateSource(io::Printer* printer) {
192192
"extraTextFormatInfo", CEscape(text_format_decode_data.Data()));
193193
}
194194
printer->Print(
195-
" if (!OSAtomicCompareAndSwapPtrBarrier(nil, worker, (void * volatile *)&descriptor)) {\n"
195+
" GPBEnumDescriptor *expected = nil;\n"
196+
" if (!atomic_compare_exchange_strong(&descriptor, &expected, worker)) {\n"
196197
" [worker release];\n"
197198
" }\n"
198199
" }\n"

0 commit comments

Comments
 (0)