Skip to content

Commit 6630ef9

Browse files
committed
android: _interlockedbittestandreset comment-out temporarily
1 parent 01bca90 commit 6630ef9

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

lib/Common/CommonPal.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -706,8 +706,11 @@ namespace PlatformAgnostic
706706
: "cc" // clobber condition code
707707
);
708708
return retval;
709+
#elif !defined(__ANDROID__)
710+
return _interlockedbittestandreset(_BitBase, (long)_BitPos);
709711
#else
710-
return _interlockedbittestandreset(_BitBase, _BitPos);
712+
// xplat-todo: Implement _interlockedbittestandreset for Android
713+
abort();
711714
#endif
712715
}
713716
};

0 commit comments

Comments
 (0)