Skip to content
Prev Previous commit
Next Next commit
Fix the missing declaration
  • Loading branch information
kunalspathak committed Jul 1, 2022
commit 73ee366207e5b5644baddffaa06ee0d2b6dd44f7
6 changes: 6 additions & 0 deletions src/coreclr/pal/inc/pal.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,12 @@ extern "C" {
// On Unix systems, NATIVE_LIBRARY_HANDLE type represents a library handle not registered with the PAL.
typedef PVOID NATIVE_LIBRARY_HANDLE;

#if defined(TARGET_ARM64)
// Flag to check if atomics feature is available on
// the machine
extern bool g_arm64_atomics_present;
#endif

/******************* Processor-specific glue *****************************/

#ifndef _MSC_VER
Expand Down