MCPcopy Create free account
hub / github.com/Simple-XX/SimpleKernel / Info

Function Info

src/include/kernel_log.hpp:182–187  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

180/// 以 INFO 级别记录日志
181template <typename... Args>
182inline auto Info(etl::format_string<Args...> fmt, Args&&... args) -> void {
183 if constexpr (detail::Level::kInfo < detail::kMinLevel) {
184 return;
185 }
186 detail::Log<detail::Level::kInfo>(fmt, static_cast<Args&&>(args)...);
187}
188
189/// 以 WARN 级别记录日志
190template <typename... Args>

Callers 15

sys_exitFunction · 0.85
main_smpFunction · 0.85
mainFunction · 0.85
ArchInitFunction · 0.85
EbreakHandlerFunction · 0.85
InterruptInitFunction · 0.85
InterruptInitSMPFunction · 0.85
DefaultInterruptHandlerFunction · 0.85
InterruptMethod · 0.85
RegisterInterruptFuncMethod · 0.85
DefaultPlicHandlerFunction · 0.85

Calls

no outgoing calls

Tested by 15

test_tick_incrementsFunction · 0.68
test_sleep_timingFunction · 0.68
test_runtime_trackingFunction · 0.68
tick_testFunction · 0.68
user_task_testFunction · 0.68
test_rr_dequeueFunction · 0.68
test_rr_statisticsFunction · 0.68
test_rr_fairnessFunction · 0.68
test_rr_mixed_operationsFunction · 0.68