diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog index 121f97dc17..326b2c9a47 100644 --- a/cpukit/ChangeLog +++ b/cpukit/ChangeLog @@ -1,3 +1,8 @@ +2010-06-21 Joel Sherrill + + * posix/src/keycreate.c, posix/src/killinfo.c: Remove more ITRON + references. + 2010-06-21 Joel Sherrill PR 1581/cpukit diff --git a/cpukit/posix/src/keycreate.c b/cpukit/posix/src/keycreate.c index a9f9634677..1da82a3c34 100644 --- a/cpukit/posix/src/keycreate.c +++ b/cpukit/posix/src/keycreate.c @@ -52,8 +52,9 @@ int pthread_key_create( /* * This is a bit more complex than one might initially expect because - * APIs are optional. Thus there may be no ITRON tasks to have keys - * for. [NOTE: Currently RTEMS Classic API tasks are always enabled.] + * APIs are optional. + * + * NOTE: Currently RTEMS Classic API tasks are always enabled. */ for ( the_api = 1; diff --git a/cpukit/posix/src/killinfo.c b/cpukit/posix/src/killinfo.c index 7ab9beb78a..c02f7807e6 100644 --- a/cpukit/posix/src/killinfo.c +++ b/cpukit/posix/src/killinfo.c @@ -184,7 +184,7 @@ int killinfo( for (the_api = OBJECTS_CLASSIC_API; the_api <= OBJECTS_APIS_LAST; the_api++) { /* - * This can occur when no one is interested and ITRON is not configured. + * This can occur when no one is interested and an API is not configured. */ if ( !_Objects_Information_table[ the_api ] ) continue;