[RTEMS Project] #1423: inconsitience in _Objects_Initialize_information

RTEMS trac trac at rtems.org
Wed Dec 17 07:25:49 UTC 2014


#1423: inconsitience in _Objects_Initialize_information
-----------------------+----------------------------
 Reporter:  nbkolchin  |       Owner:  joel.sherrill
     Type:  defect     |      Status:  closed
 Priority:  normal     |   Milestone:  4.11
Component:  cpukit     |     Version:  4.10
 Severity:  minor      |  Resolution:  fixed
 Keywords:             |
-----------------------+----------------------------
Changes (by sebastian.huber):

 * status:  new => closed
 * resolution:   => fixed


Old description:

> Our partners found precision lost in _Objects_Initialize_information
> function.
>
> It is declared as (objectinitializeinformation.c):
>
> void _Objects_Initialize_information(
>   Objects_Information *information,
>   Objects_APIs         the_api,
>   uint32_t             the_class,
>   uint32_t             maximum,
>   uint16_t             size,
>   bool                 is_string,
>   uint32_t             maximum_name_length
> #if defined(RTEMS_MULTIPROCESSING)
>   ,
>   bool                 supports_global,
>   Objects_Thread_queue_Extract_callout extract
> #endif
> )
>
> And later in code:
>
>   information->the_class          = the_class;
>
> But information->the_class have type uint16_t.
>
> From object.h:
>
>   /** This is the class of this object set. */
>   uint16_t          the_class;
>
> Proposed solution: the_class should have same type everywhere.

New description:

 Our partners found precision lost in _Objects_Initialize_information
 function.

 It is declared as (objectinitializeinformation.c):

 void _Objects_Initialize_information(
   Objects_Information *information,
   Objects_APIs         the_api,
   uint32_t             the_class,
   uint32_t             maximum,
   uint16_t             size,
   bool                 is_string,
   uint32_t             maximum_name_length
 #if defined(RTEMS_MULTIPROCESSING)
   ,
   bool                 supports_global,
   Objects_Thread_queue_Extract_callout extract
 #endif
 )

 And later in code:

   information->the_class          = the_class;

 But information->the_class have type uint16_t.

 From object.h:

   /** This is the class of this object set. */
   uint16_t          the_class;

 Proposed solution: the_class should have same type everywhere.

--

Comment:

 [8f0b33466bac9105c1dc94506b4297c84e344a37/rtems]

--
Ticket URL: <http://devel.rtems.org/ticket/1423#comment:6>
RTEMS Project <http://www.rtems.org/>
RTEMS Project


More information about the bugs mailing list