You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The z_thread_mark_switched_in() and z_thread_mark_switched_out()
functions make use of k_current_get(). When CONFIG_THREAD_LOCAL_STORAGE
is set, k_current_get() retrieves the current thread pointer from the
TLS area. However, during early boot, those tracing functions get involved
although the TLS area has not yet been initialized.
The text was updated successfully, but these errors were encountered:
The
z_thread_mark_switched_in()
andz_thread_mark_switched_out()
functions make use of
k_current_get()
. WhenCONFIG_THREAD_LOCAL_STORAGE
is set,
k_current_get()
retrieves the current thread pointer from theTLS area. However, during early boot, those tracing functions get involved
although the TLS area has not yet been initialized.
The text was updated successfully, but these errors were encountered: