code wiki / _hdl_build / nx_stability_census.nx

nx_stability_census.nx

buildroot/runtime/_hdl_build/nx_stability_census.nx

7056 B79 linesdepth 2pulls 2 transitivereach 0 importersview sourcekind tooltopic stability
docsdependenciesstructsconstsfunctions

about

nx_stability_census.nx -- the MEASURED, HONEST stability scorecard vs the SOTA (operator: "i want s class exceed stability ... i am absolutely sure we arent s class stable compared to aws or other leaders"). Grounded in the sovereign reliability researcher (knowledge/library/rel_*.txt: SRE/HA/fault-tolerance/failover/redundancy/circuit -breaker/backoff/watchdog/OTP/chaos/rejuvenation/SLO). It does NOT wave: it CREDITS a reliability dimension ONLY when a real GREEN gate log proves it (liar-kill: no green evidence -> GAP, never claimed), and it LEADS WITH THE GAPS vs AWS -- the multi-node availability axes we do NOT have. The verdict is an honest "where are we" permil to S-class, not a false-green (an honest "we are behind" IS the correct output, like nx_autonomy_meter). license_tier: ORIGINAL

dependencies 1 imports · 0 importers

nx_syscalls.nx nx_stability_census.nx

imports: nx_syscalls.nx

imported by: nobody (leaf or entry point)

call flow from main pre-order; caps 40 nodes / depth 6 declared; ↻ = already shown

main c_puts sys_write c_contains_green sys_mmap nxa_die sys_write ↻ sys_exit nxa_lock_take nxa_lock_addr sys_write ↻ nxa_lock_give nxa_lock_addr ↻ nxa_report_overrun sys_write ↻ nxa_dump_printable sys_write ↻ nxa_dump_sizes sys_write ↻ sys_read_file sys_openat_rd sys_lseek sys_mmap ↻ sys_read sys_munmap sys_close c_have c_puts ↻ c_gap c_puts ↻ c_num sys_mmap ↻ sys_write ↻ sys_openat_append c_w sys_write ↻ sys_mmap ↻ sys_write ↻ sys_close ↻ sys_exit ↻

structs

none

consts

none

functions

10func c_puts(s: *u8) -> i64 { var n: i64 = 0; while s[n] != (0 as u8) { n = n + 1 } sys_write(1, s, n); return 0 }
called by 3: c_havec_gapmain calls 1: sys_write
11func c_w(fd: i64, s: *u8) -> i64 { var n: i64 = 0; while s[n] != (0 as u8) { n = n + 1 } sys_write(fd, s, n); return 0 }
called by 1: main calls 1: sys_write
12func c_slen(s: *u8) -> i64 { var n: i64 = 0; while s[n] != (0 as u8) { n = n + 1 } return n }
13func c_num(v: i64) -> i64
called by 1: main calls 2: sys_mmapsys_write
19func c_contains_green(path: *u8) -> i64
called by 1: main calls 2: sys_mmapsys_read_file
29func c_have(ok: i64, dim: *u8, why: *u8) -> i64
called by 1: main calls 1: c_puts
35func c_gap(dim: *u8, why: *u8) -> i64 { c_puts(" [GAP!] " as *u8); c_puts(dim); c_puts(" <- " as *u8); c_puts(why); c_puts("\n" as *u8); return 0 }
called by 1: main calls 1: c_puts
37func main() -> i64