From 714470716fb38f43a2b2186fb4044f83cebe6be9 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Sat, 11 Sep 2004 20:18:08 +0000 Subject: [PATCH] Fix typo: sterror -> strerror git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16294 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/System/AIX/Memory.cpp | 2 +- lib/System/Cygwin/Memory.cpp | 2 +- lib/System/FreeBSD/Memory.cpp | 2 +- lib/System/Interix/Memory.cpp | 2 +- lib/System/SunOS/Memory.cpp | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/System/AIX/Memory.cpp b/lib/System/AIX/Memory.cpp index b4e9a9f5b48..6ba57de40a6 100644 --- a/lib/System/AIX/Memory.cpp +++ b/lib/System/AIX/Memory.cpp @@ -45,7 +45,7 @@ void* Memory::AllocateRWX(Memory& M, unsigned NumBytes) { void Memory::ReleaseRWX(Memory& M) { if (M.Address == 0 || M.AllocSize == 0) return; if (0 != munmap(M.Address, M.AllocSize)) { - throw std::string("Can't release RWX Memory: ") + sterror(errno); + throw std::string("Can't release RWX Memory: ") + strerror(errno); } } diff --git a/lib/System/Cygwin/Memory.cpp b/lib/System/Cygwin/Memory.cpp index 4c0123b7f92..58e660c2083 100644 --- a/lib/System/Cygwin/Memory.cpp +++ b/lib/System/Cygwin/Memory.cpp @@ -45,7 +45,7 @@ void* Memory::AllocateRWX(Memory& M, unsigned NumBytes) { void Memory::ReleaseRWX(Memory& M) { if (M.Address == 0 || M.AllocSize == 0) return; if (0 != munmap(M.Address, M.AllocSize)) { - throw std::string("Can't release RWX Memory: ") + sterror(errno); + throw std::string("Can't release RWX Memory: ") + strerror(errno); } } diff --git a/lib/System/FreeBSD/Memory.cpp b/lib/System/FreeBSD/Memory.cpp index 16fa849c55c..eeb22e910bf 100644 --- a/lib/System/FreeBSD/Memory.cpp +++ b/lib/System/FreeBSD/Memory.cpp @@ -44,7 +44,7 @@ void* Memory::AllocateRWX(Memory& M, unsigned NumBytes) { void Memory::ReleaseRWX(Memory& M) { if (M.Address == 0 || M.AllocSize == 0) return; if (0 != munmap(M.Address, M.AllocSize)) { - throw std::string("Can't release RWX Memory: ") + sterror(errno); + throw std::string("Can't release RWX Memory: ") + strerror(errno); } } diff --git a/lib/System/Interix/Memory.cpp b/lib/System/Interix/Memory.cpp index b0791ef7d14..b79f8b62680 100644 --- a/lib/System/Interix/Memory.cpp +++ b/lib/System/Interix/Memory.cpp @@ -44,7 +44,7 @@ void* Memory::AllocateRWX(Memory& M, unsigned NumBytes) { void Memory::ReleaseRWX(Memory& M) { if (M.Address == 0 || M.AllocSize == 0) return; if (0 != munmap(M.Address, M.AllocSize)) { - throw std::string("Can't release RWX Memory: ") + sterror(errno); + throw std::string("Can't release RWX Memory: ") + strerror(errno); } } diff --git a/lib/System/SunOS/Memory.cpp b/lib/System/SunOS/Memory.cpp index dd15f13495b..d6d871aa715 100644 --- a/lib/System/SunOS/Memory.cpp +++ b/lib/System/SunOS/Memory.cpp @@ -45,7 +45,7 @@ void* Memory::AllocateRWX(Memory& M, unsigned NumBytes) { void Memory::ReleaseRWX(Memory& M) { if (M.Address == 0 || M.AllocSize == 0) return; if (0 != munmap(M.Address, M.AllocSize)) { - throw std::string("Can't release RWX Memory: ") + sterror(errno); + throw std::string("Can't release RWX Memory: ") + strerror(errno); } } -- 2.34.1