summaryrefslogtreecommitdiffstats
path: root/c/src/librtems++
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/librtems++')
-rw-r--r--c/src/librtems++/include/rtems++/rtemsInterrupt.h2
-rw-r--r--c/src/librtems++/src/rtemsMessageQueue.cc1
-rw-r--r--c/src/librtems++/src/rtemsSemaphore.cc1
-rw-r--r--c/src/librtems++/src/rtemsTask.cc1
-rw-r--r--c/src/librtems++/src/rtemsTimer.cc1
5 files changed, 5 insertions, 1 deletions
diff --git a/c/src/librtems++/include/rtems++/rtemsInterrupt.h b/c/src/librtems++/include/rtems++/rtemsInterrupt.h
index 0dc6a20d5e..f722eb7683 100644
--- a/c/src/librtems++/include/rtems++/rtemsInterrupt.h
+++ b/c/src/librtems++/include/rtems++/rtemsInterrupt.h
@@ -71,7 +71,7 @@ protected:
private:
const rtemsInterrupt& operator=(const rtemsInterrupt& );
- Interrupt(const rtemsInterrupt& );
+ rtemsInterrupt(const rtemsInterrupt& );
// the vector caught
rtems_vector_number vector;
diff --git a/c/src/librtems++/src/rtemsMessageQueue.cc b/c/src/librtems++/src/rtemsMessageQueue.cc
index 1978e1c6ec..c3183dc2b0 100644
--- a/c/src/librtems++/src/rtemsMessageQueue.cc
+++ b/c/src/librtems++/src/rtemsMessageQueue.cc
@@ -18,6 +18,7 @@
------------------------------------------------------------------------
*/
+#include <string.h>
#include <rtems++/rtemsMessageQueue.h>
/* ----
diff --git a/c/src/librtems++/src/rtemsSemaphore.cc b/c/src/librtems++/src/rtemsSemaphore.cc
index 1e0d3de472..5821612618 100644
--- a/c/src/librtems++/src/rtemsSemaphore.cc
+++ b/c/src/librtems++/src/rtemsSemaphore.cc
@@ -18,6 +18,7 @@
------------------------------------------------------------------------
*/
+#include <string.h>
#include <rtems++/rtemsSemaphore.h>
/* ----
diff --git a/c/src/librtems++/src/rtemsTask.cc b/c/src/librtems++/src/rtemsTask.cc
index d90c8f669f..619f7d4071 100644
--- a/c/src/librtems++/src/rtemsTask.cc
+++ b/c/src/librtems++/src/rtemsTask.cc
@@ -18,6 +18,7 @@
------------------------------------------------------------------------
*/
+#include <string.h>
#include <rtems++/rtemsTask.h>
// include to allow it to be compiled
#include <rtems++/rtemsTaskMode.h>
diff --git a/c/src/librtems++/src/rtemsTimer.cc b/c/src/librtems++/src/rtemsTimer.cc
index b87ffd5e80..835bfd74ce 100644
--- a/c/src/librtems++/src/rtemsTimer.cc
+++ b/c/src/librtems++/src/rtemsTimer.cc
@@ -18,6 +18,7 @@
------------------------------------------------------------------------
*/
+#include <string.h>
#include <rtems++/rtemsTimer.h>
/* ----