summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2007-02-06 14:36:02 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2007-02-06 14:36:02 +0000
commit70261d10b83368bc6a3bc57e0a6a4273d3507ee7 (patch)
tree295b17d91b6cebb5acbf63cb847d613eddc754e7 /cpukit
parent2007-02-06 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-70261d10b83368bc6a3bc57e0a6a4273d3507ee7.tar.bz2
2007-02-06 Ralf Corsépius <ralf.corsepius@rtems.org>
* posix/src/sysconf.c: Add support for _SC_PAGESIZE (PR 1215).
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/ChangeLog1
-rw-r--r--cpukit/posix/src/sysconf.c5
2 files changed, 6 insertions, 0 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 72cda98fd6..51902547c6 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,5 +1,6 @@
2007-02-06 Ralf Corsépius <ralf.corsepius@rtems.org>
+ * posix/src/sysconf.c: Add support for _SC_PAGESIZE (PR 1215).
* posix/src/mqueuesendsupp.c: Remove cast to make broken const cast
visible.
* score/inline/rtems/score/coremsg.inl: More size_t and consts.
diff --git a/cpukit/posix/src/sysconf.c b/cpukit/posix/src/sysconf.c
index 4a8add9e35..60a890d896 100644
--- a/cpukit/posix/src/sysconf.c
+++ b/cpukit/posix/src/sysconf.c
@@ -13,6 +13,8 @@
#include <rtems/system.h>
#include <rtems/score/tod.h>
+#include <sys/param.h>
+
/*PAGE
*
* 4.8.1 Get Configurable System Variables, P1003.1b-1993, p. 95
@@ -34,6 +36,9 @@ long sysconf(
case _SC_GETPW_R_SIZE_MAX:
return 1024;
+
+ case _SC_PAGESIZE:
+ return PAGE_SIZE;
#if defined(__sparc__)
case 515: /* Solaris _SC_STACK_PROT */