summaryrefslogtreecommitdiff
path: root/ACE/ace/OS_NS_unistd.inl
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-01-31 13:31:47 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-01-31 13:31:47 +0000
commit708128737087d7beb32f80671af3cfe99bce6648 (patch)
treece8141381416fdf042f0db503d0da403a6ca76db /ACE/ace/OS_NS_unistd.inl
parent01b8cd371b3b26827b17b7c06f0e7b6be52cdfa2 (diff)
downloadATCD-708128737087d7beb32f80671af3cfe99bce6648.tar.gz
Diffstat (limited to 'ACE/ace/OS_NS_unistd.inl')
-rw-r--r--ACE/ace/OS_NS_unistd.inl2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/ace/OS_NS_unistd.inl b/ACE/ace/OS_NS_unistd.inl
index b243a44fd5c..a63620857ad 100644
--- a/ACE/ace/OS_NS_unistd.inl
+++ b/ACE/ace/OS_NS_unistd.inl
@@ -95,7 +95,7 @@ ACE_OS::getpagesize (void)
SYSTEM_INFO sys_info;
::GetSystemInfo (&sys_info);
return (long) sys_info.dwPageSize;
-#elif defined (_SC_PAGESIZE) && !defined (ACE_HAS_BROKEN_SC_PAGESIZE)
+#elif defined (_SC_PAGESIZE) && !defined (ACE_HAS_NOTSUP_SC_PAGESIZE)
return ::sysconf (_SC_PAGESIZE);
#elif defined (ACE_HAS_GETPAGESIZE)
return ::getpagesize ();