sched/sched: Modify the critical section interface name #18080
+19
−19
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.

Summary
This PR renames the non-instrumented critical-section API identifiers from the
_wo_notesuffix to_notraceto more clearly indicate the absence of tracing/notes. The change is a symbol rename and macro-update only; it does not alter runtime logic.Details:
enter_critical_section_wo_note()->enter_critical_section_notrace()leave_critical_section_wo_note(flags)->leave_critical_section_notrace(flags)include/nuttx/irq.hto mapenter_critical_section()/leave_critical_section()to_notracevariants when instrumentation is disabled.sched/irq/irq_csection.c.drivers/note/note_driver.c,sched/sched/sched_lock.c, andsched/sched/sched_unlock.c.Impact
_wo_notesymbols will fail to link until updated._wo_notewill break._wo_noteshould be updated.Testing
ostest PASS