summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cpukit/ChangeLog5
-rw-r--r--cpukit/posix/include/rtems/posix/threadsup.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 6e4e85e040..1a0a9be0ac 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,8 @@
+2009-09-25 Joel Sherrill <joel.sherrill@OARcorp.com>
+
+ * posix/include/rtems/posix/threadsup.h: Add no return atrribute to
+ _POSIX_Thread_Exit().
+
2009-09-24 Joel Sherrill <joel.sherrill@oarcorp.com>
* libmisc/shell/hexdump-odsyntax.c: Fix failure on SH2e where there is
diff --git a/cpukit/posix/include/rtems/posix/threadsup.h b/cpukit/posix/include/rtems/posix/threadsup.h
index e0d5ce9132..673ee0ed12 100644
--- a/cpukit/posix/include/rtems/posix/threadsup.h
+++ b/cpukit/posix/include/rtems/posix/threadsup.h
@@ -81,7 +81,7 @@ typedef struct {
void _POSIX_Thread_Exit(
Thread_Control *the_thread,
void *value_ptr
-);
+) RTEMS_COMPILER_NO_RETURN_ATTRIBUTE;
#endif
/* end of include file */