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++/rtemsTask.h8
-rw-r--r--c/src/librtems++/src/rtemsTask.cc12
2 files changed, 0 insertions, 20 deletions
diff --git a/c/src/librtems++/include/rtems++/rtemsTask.h b/c/src/librtems++/include/rtems++/rtemsTask.h
index 3aac25d13c..7d151c2f50 100644
--- a/c/src/librtems++/include/rtems++/rtemsTask.h
+++ b/c/src/librtems++/include/rtems++/rtemsTask.h
@@ -47,8 +47,6 @@
Mode control is through the rtemsTaskMode class.
- The rtemsTask class reserved notepad register 31.
-
------------------------------------------------------------------------ */
#if !defined(_rtemsTask_h_)
@@ -125,12 +123,6 @@ public:
const rtems_status_code set_priority(const rtems_task_priority priority,
rtems_task_priority& old_priority);
- // notepad control
- const rtems_status_code get_note(const uint32_t notepad,
- uint32_t& note) RTEMS_DEPRECATED;
- const rtems_status_code set_note(const uint32_t notepad,
- const uint32_t note) RTEMS_DEPRECATED;
-
// object id, and name
const rtems_id id_is() const { return id; }
const rtems_name name_is() const { return name; }
diff --git a/c/src/librtems++/src/rtemsTask.cc b/c/src/librtems++/src/rtemsTask.cc
index 3bd9c992d4..c8607d2fd9 100644
--- a/c/src/librtems++/src/rtemsTask.cc
+++ b/c/src/librtems++/src/rtemsTask.cc
@@ -262,18 +262,6 @@ const rtems_status_code rtemsTask::set_priority(const rtems_task_priority priori
priority,
&old_priority));
}
-
-const rtems_status_code rtemsTask::get_note(const uint32_t notepad,
- uint32_t& note)
-{
- return set_status_code(rtems_task_get_note(id, notepad, &note));
-}
-
-const rtems_status_code rtemsTask::set_note(const uint32_t notepad,
- const uint32_t note)
-{
- return set_status_code(rtems_task_set_note(id, notepad, note));
-}
void rtemsTask::body(rtems_task_argument )
{