<div dir="ltr">Hi<div><br></div><div>Building the rtems-examples, the test fat_ramdisk gets a failure from rtems-tld because _Thread_Close is still listed in the ini files it uses. </div><div><br></div><div>What symbols should be in the sections that currently have _Thread_Close?</div><div><br></div><div>Small patch below my signature which just removes _Thread_Close references. I am assuming something may need to be added but I don't know what changed removed _Thread_Close.</div><div><br></div><div>Thanks.<br><br>---joel</div><div><br></div><div>diff --git a/linkers/rtems-score-thread.ini b/linkers/rtems-score-thread.ini<br>index 974bcfd..a759f72 100644<br>--- a/linkers/rtems-score-thread.ini<br>+++ b/linkers/rtems-score-thread.ini<br>@@ -5,7 +5,7 @@<br> trace = _Thread_Handler_initialization, _Thread_Create_idle, _Thread_Start_multitasking<br> trace = _Stack_Allocate, _Stack_Free, _Thread_Start<br> trace = _Thread_Yield, _Thread_Set_life_protection<br>-trace = _Thread_Kill_zombies, _Thread_Close<br>+trace = _Thread_Kill_zombies<br> trace = _Thread_Clear_state, _Thread_Set_state, _Thread_Load_environment<br> trace = _Thread_Handler<br> trace = _Thread_Get<br>@@ -19,7 +19,7 @@ trace = _Stack_Allocate, _Thread_Start<br> trace = _Thread_Restart, _Thread_Handler<br> <br> [rtems-score-thread-destroy]<br>-trace = _Thread_Kill_zombies, _Thread_Close<br>+trace = _Thread_Kill_zombies<br> <br> [rtems-score-thread-activity]<br> trace = _Thread_Yield, _Thread_Set_life_protection<br>@@ -38,7 +38,6 @@ _Thread_Start = Status_Control, Thread_Control*, const Thread_Entry_information*<br> _Thread_Yield = void, Thread_Control*<br> _Thread_Set_life_protection = Thread_Life_state, Thread_Life_state<br> _Thread_Kill_zombies = void, void<br>-_Thread_Close = void, Thread_Control*, Thread_Control*, Thread_Close_context*<br> _Thread_Clear_state = States_Control, Thread_Control*, States_Control<br> _Thread_Set_state = States_Control, Thread_Control*, States_Control<br> _Thread_Load_environment = void, Thread_Control*<br></div></div>