MCPcopy Create free account
hub / github.com/LPC4/Full-Stack / kernel_boot_kshutdown_nonzero_exit

Function kernel_boot_kshutdown_nonzero_exit

tests/integration/platform_stdlib.rs:526–538  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

524 i += 1
525 }
526 if v.len != 100 { return 3 }
527 if v.capacity < 100 { return 4 }
528
529 i = 0
530 while i < 100 {
531 slot: i64* = Vec_get<i64>(&v, i as u64)
532 if slot == null { return 5 }
533 if @slot != i * 3 { return 6 }
534 i += 1
535 }
536 if Vec_get<i64>(&v, 100) != null { return 7 }
537
538 out: i64 = 0
539 if Vec_pop<i64>(&v, &out) == false { return 8 }
540 if out != 99 * 3 { return 9 }
541 if v.len != 99 { return 10 }

Callers

nothing calls this directly

Calls 1

run_kernel_hllFunction · 0.70

Tested by

no test coverage detected