summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2013-12-09 14:37:03 -0600
committerJoel Sherrill <joel.sherrill@oarcorp.com>2013-12-09 19:50:55 -0600
commit2b3a648fe1f48ff6e3ccd8ad95c76da12c4fa645 (patch)
tree90f711ee5254842550ad120e545c7725dafffbfe /cpukit
parenttimerimpl.h: Comment clean up (diff)
downloadrtems-2b3a648fe1f48ff6e3ccd8ad95c76da12c4fa645.tar.bz2
signalcatch.c: Remove junk comment
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/posix/include/rtems/posix/key.h2
-rw-r--r--cpukit/rtems/src/signalcatch.c1
2 files changed, 1 insertions, 2 deletions
diff --git a/cpukit/posix/include/rtems/posix/key.h b/cpukit/posix/include/rtems/posix/key.h
index 9869881138..fcee90323a 100644
--- a/cpukit/posix/include/rtems/posix/key.h
+++ b/cpukit/posix/include/rtems/posix/key.h
@@ -51,7 +51,7 @@ typedef struct {
/** This field is the Thread id also used as an rbtree key */
Objects_Id thread_id;
/** This field points to the POSIX key value of specific thread */
- void *value;
+ const void *value;
} POSIX_Keys_Key_value_pair;
/**
diff --git a/cpukit/rtems/src/signalcatch.c b/cpukit/rtems/src/signalcatch.c
index a5e5ef88f4..f7e4afb912 100644
--- a/cpukit/rtems/src/signalcatch.c
+++ b/cpukit/rtems/src/signalcatch.c
@@ -69,7 +69,6 @@ rtems_status_code rtems_signal_catch(
RTEMS_API_Control *api;
ASR_Information *asr;
-/* XXX normalize mode */
executing = _Thread_Get_executing();
api = (RTEMS_API_Control*)executing->API_Extensions[ THREAD_API_RTEMS ];
asr = &api->Signal;