change log for rtems (2010-11-25)

Chris Johns chrisj at rtems.org
Thu Nov 25 20:45:24 UTC 2010


Thanks for committing this change.

On 26/11/10 12:10 AM, rtems-vc at rtems.org wrote:
> +  rtems_test_assert(
> +    sizeof(rtems_chain_control)
> +      == sizeof(rtems_chain_node) + sizeof(rtems_chain_node *)

The original size is (sizeof(void*) * 3). Do we maintain this size on 
all platforms ?

Maybe the test should be:

  struct layout_test {
    void* one;
    void* two;
    void* three;
  };

  rtems_test_assert(
     sizeof(rtems_chain_control) == sizeof(layout_test))

Chris



More information about the vc mailing list