Skip to content
Prev Previous commit
Next Next commit
Add a better explination of why the function is unimplmented on Unix.
  • Loading branch information
AustinWise authored and github-actions committed Feb 8, 2023
commit 5f4ca4cd64b3b7dc1fbf5ec974a10cc39bc91735
3 changes: 2 additions & 1 deletion src/coreclr/nativeaot/Runtime/unix/PalRedhawkUnix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1103,7 +1103,8 @@ extern "C" int32_t _stricmp(const char *string1, const char *string2)
REDHAWK_PALIMPORT bool REDHAWK_PALAPI TryPopulateControlSegmentRegisters(CONTEXT* pContext)
{
#if defined(TARGET_X86) || defined(TARGET_AMD64)
// TODO: attempt to fill in SegCs and SegSs
// Currently the CONTEXT is only used on Windows for RaiseFailFastException.
// So we punt on filling in SegCs and SegSs for now.
return false;
#else
return true;
Expand Down