summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-11-03 15:39:55 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-11-03 15:39:55 +0000
commitba41dfdee53dba64d7f86420b5ccf359520afb66 (patch)
treefe39ad72d2304ff2dec3f0f97ca5dce009591bb2 /c
parentchanged version to ss-20001103 (diff)
downloadrtems-ba41dfdee53dba64d7f86420b5ccf359520afb66.tar.bz2
2000-11-02 Joel Sherrill <joel@OARcorp.com>
* include/rtems/system.h: Use proper conditional (RTEMS_POSIX_API) so prototypes for POSIX_MP_NOT_IMPLEMENTED(), POSIX_NOT_IMPLEMENTED(), POSIX_BOTTOM_REACHED() are actually included.
Diffstat (limited to 'c')
-rw-r--r--c/src/exec/score/ChangeLog6
-rw-r--r--c/src/exec/score/include/rtems/system.h2
2 files changed, 7 insertions, 1 deletions
diff --git a/c/src/exec/score/ChangeLog b/c/src/exec/score/ChangeLog
index 829288a057..654a67faef 100644
--- a/c/src/exec/score/ChangeLog
+++ b/c/src/exec/score/ChangeLog
@@ -1,6 +1,12 @@
2000-11-02 Joel Sherrill <joel@OARcorp.com>
+ * include/rtems/system.h: Use proper conditional (RTEMS_POSIX_API)
+ so prototypes for POSIX_MP_NOT_IMPLEMENTED(), POSIX_NOT_IMPLEMENTED(),
+ POSIX_BOTTOM_REACHED() are actually included.
+
+2000-11-02 Joel Sherrill <joel@OARcorp.com>
+
* include/rtems/system.h: Add prototypes for POSIX_MP_NOT_IMPLEMENTED(),
POSIX_NOT_IMPLEMENTED(), POSIX_BOTTOM_REACHED() removed from newlib.
diff --git a/c/src/exec/score/include/rtems/system.h b/c/src/exec/score/include/rtems/system.h
index d7f55b1b2c..d11e3ea8d7 100644
--- a/c/src/exec/score/include/rtems/system.h
+++ b/c/src/exec/score/include/rtems/system.h
@@ -113,7 +113,7 @@ extern "C" {
* The following are used by the POSIX implementation to catch bad paths.
*/
-#ifdef POSIX_API_INIT
+#ifdef RTEMS_POSIX_API
int POSIX_MP_NOT_IMPLEMENTED( void );
int POSIX_NOT_IMPLEMENTED( void );
int POSIX_BOTTOM_REACHED( void );