<meta http-equiv="Content-Type" content="text/html; charset=utf-8"><div dir="ltr"><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, Jan 8, 2024 at 7:13 AM Sebastian Huber <<a href="mailto:sebastian.huber@embedded-brains.de" target="_blank">sebastian.huber@embedded-brains.de</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">On 04.01.24 19:34, <a href="mailto:berndmoessner80@gmail.com" target="_blank">berndmoessner80@gmail.com</a> wrote:<br>
> @@ -490,7 +491,9 @@ static int rtems_flashdev_do_init(<br>
>     void ( *destroy )( rtems_flashdev *flash )<br>
>   )<br>
>   {<br>
> -  rtems_recursive_mutex_init( &flash->mutex, "RTEMS_FLASHDEV Flash" );<br>
> +  char mtx_name[19];<br>
> +  sprintf(mtx_name, "FDEV_MTX_%08x", (unsigned int) flash);<br>
> +  rtems_recursive_mutex_init( &flash->mutex, (const char*) &mtx_name);<br>
<br>
The mutex name must exist throughout the life-time of the mutex object. <br>
So, here you can't use a name on a thread stack.<br></blockquote><div><br></div><div>This was fixed in a later patch in the set and appears to have been dropped entirely from the v2 patch set.</div><div><br></div><div>Kinsey <br></div></div></div>