change log for rtems (2010-04-30)

Chris Johns chrisj at rtems.org
Sat May 1 00:01:46 UTC 2010


On 30/04/2010 7:12 PM, rtems-vc at rtems.org wrote:
>   /**
> + * @brief See _Chain_Get_unprotected().
> + */
> +RTEMS_INLINE_ROUTINE rtems_chain_node *rtems_chain_get_unprotected(
> +  rtems_chain_control *the_chain
> +)
> +{
> +  return _Chain_Get_unprotected( the_chain );
> +}
> +
> +/**
>    *  @brief Insert a node on a chain
>    *
>    *  This routine inserts @a the_node on a chain immediately following
> @@ -402,6 +412,17 @@
>   }
>
>   /**
> + * @brief See _Chain_Insert_unprotected().
> + */
> +RTEMS_INLINE_ROUTINE void rtems_chain_insert_unprotected(
> +  rtems_chain_node *after_node,
> +  rtems_chain_node *the_node
> +)
> +{
> +  _Chain_Insert_unprotected( after_node, the_node );
> +}
> +
> +/**
>    *  @brief Append a node on the end of a chain
>    *
>    *  This routine appends @a the_node onto the end of @a the_chain.
>

This will need an update to the documentation. I am not sure I have keep 
it updated. I will take a look and add these and anything else.

> +
> +#include<rtems.h>
> +#include<rtems/bdpart.h>
> +#include<rtems/dosfs.h>
> +#include<rtems/fsmount.h>
> +
> +rtems_status_code rtems_bdpart_mount(
> +  const char *disk_name,
> +  const rtems_bdpart_partition *pt __attribute__((unused)),
> +  size_t count,
> +  const char *mount_base
> +)

What is required to add RFS support ?

I suppose it would need a partition id. I am not sure how these are 
allocated.

Chris



More information about the vc mailing list