From 2b3a648fe1f48ff6e3ccd8ad95c76da12c4fa645 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 9 Dec 2013 14:37:03 -0600 Subject: [PATCH] signalcatch.c: Remove junk comment --- cpukit/posix/include/rtems/posix/key.h | 2 +- cpukit/rtems/src/signalcatch.c | 1 - 2 files changed, 1 insertion(+), 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;