<div dir="ltr"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">It would not provide anything, and it might encourage a false sense of<br>concurrency-safety.</blockquote><div>I understand. Thanks! </div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Mar 19, 2021 at 12:40 AM Gedare Bloom <<a href="mailto:gedare@rtems.org">gedare@rtems.org</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 Thu, Mar 18, 2021 at 11:25 AM Richi Dubey <<a href="mailto:richidubey@gmail.com" target="_blank">richidubey@gmail.com</a>> wrote:<br>
><br>
> Thanks for your help! I read the doc.<br>
>><br>
>> This is definitely an area where you have to think a bit at the<br>
>> conceptual purpose of the API/feature to realize why it can't<br>
>> work or is unsafe in SMP mode.<br>
><br>
> I understand. The only reason we would want to have a feature like no preemption for a thread is to give it the exclusive right to some data for some time. Since there are multiple threads running on multiple processors, no preemption for one thread does not help us achieve anything. Got it.<br>
><br>
> But, what if we still want such a feature? Why is it impossible to have? I don't see any harm in having a processor run a no preempt thread in an SMP environment.<br>
><br>
It would not provide anything, and it might encourage a false sense of<br>
concurrency-safety.<br>
<br>
> Thanks!<br>
><br>
> On Wed, Mar 17, 2021 at 6:14 PM Joel Sherrill <<a href="mailto:joel@rtems.org" target="_blank">joel@rtems.org</a>> wrote:<br>
>><br>
>><br>
>><br>
>> On Wed, Mar 17, 2021 at 1:54 AM Richi Dubey <<a href="mailto:richidubey@gmail.com" target="_blank">richidubey@gmail.com</a>> wrote:<br>
>>><br>
>>> Hi,<br>
>>><br>
>>> I am debugging tm19 running on Strong APA scheduler. It gives the following error:<br>
>>> rtems_signal_catch FAILED -- expected (RTEMS_SUCCESSFUL) got (RTEMS_NOT_IMPLEMENTED)<br>
>>><br>
>>> which is due to line 167. This arises because the variable is_non_preempt_mode_supported in _Scheduler_Control of SMP Strong APA scheduler is set to false.<br>
>>><br>
>>> On further checking, I can see that almost all the SMP schedulers have this variable set as false in cpukit/include/rtems/scheduler.h. Please let me know why this is the case. What would I need to do to support non preempt tasks in the Strong APA scheduler?<br>
>><br>
>><br>
>> No preempt does not make sense in an SMP environment. The idea with<br>
>> no preempt is that by setting it, the thread runs without another thread (only<br>
>> interrupts) preempting it. This works fine on uniprocessor systems but since<br>
>> there are always multiple threads running in SMP, the assumption is<br>
>> violated.<br>
>><br>
>> No preempt is an old RTOS feature and sometimes has a name like<br>
>> scheduler lock. It is just one of the features/APIs not safe for SMP that<br>
>> we removed or made inoperable in SMP mode. This section in the<br>
>> manual covers these features:<br>
>><br>
>> <a href="https://docs.rtems.org/branches/master/c-user/symmetric_multiprocessing_services.html#application-issues" rel="noreferrer" target="_blank">https://docs.rtems.org/branches/master/c-user/symmetric_multiprocessing_services.html#application-issues</a><br>
>><br>
>> This is definitely an area where you have to think a bit at the<br>
>> conceptual purpose of the API/feature to realize why it can't<br>
>> work or is unsafe in SMP mode.<br>
>><br>
>> --joel<br>
>>><br>
>>> _______________________________________________<br>
>>> devel mailing list<br>
>>> <a href="mailto:devel@rtems.org" target="_blank">devel@rtems.org</a><br>
>>> <a href="http://lists.rtems.org/mailman/listinfo/devel" rel="noreferrer" target="_blank">http://lists.rtems.org/mailman/listinfo/devel</a><br>
><br>
> _______________________________________________<br>
> devel mailing list<br>
> <a href="mailto:devel@rtems.org" target="_blank">devel@rtems.org</a><br>
> <a href="http://lists.rtems.org/mailman/listinfo/devel" rel="noreferrer" target="_blank">http://lists.rtems.org/mailman/listinfo/devel</a><br>
</blockquote></div>