code wiki / (root) / nx_compare_ladder_capture.nx

nx_compare_ladder_capture.nx

buildroot/runtime/nx_compare_ladder_capture.nx

4960 B92 linesdepth 5pulls 6 transitivereach 0 importersview sourcekind tooltopic compare
docsdependenciesstructsconstsfunctions

about

Test-only staged matrix capture. No source edits or index publication. WARNING: matrix HTML rendering can refresh public reference assets via rp_publish. Do not run against the real tree without accepting that existing emitter side effect. args: <unique-output-stem> <capture-bytes> <timeout-ms> <html|json>; all limits are caller supplied.

dependencies 2 imports · 0 importers

nx_tool_run.nx nx_itoa_lib.nx nx_compare_ladder_capture.nx

imports: nx_tool_run.nxnx_itoa_lib.nx

imported by: nobody (leaf or entry point)

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

main crm_out crm_decimal crm_append crm_equal tr_run_capture_tr tr_run_capture_core tr_run_capture_core_owned tr_run_capture_core_eviden sys_mmap_shared tr_clock_ms sys_clock_gettime_mono sys_munmap sys_pipe2 sys_fork sys_close sys_default_signal sys_mmap sys_bind_parent_lifetime sys_prctl sys_exit sys_setpgid tr_capture_redirect sys_dup3 sys_chdir sys_mmap ↻ sys_close_inherited sys_close_inherited_proc sys_execve tr_exec_failed sys_write sys_exit ↻ tr_watchdog_start sys_mmap ↻ sys_pipe2 ↻ sys_munmap ↻ sys_fork ↻ tr_watchdog_child sys_exit ↻ sys_close ↻

structs

none

consts

7const CRM_I64_MAX: i64 = 9223372036854775807
8const CRM_PATH_CAP: i64 = 512

functions

9func crm_out(s: *u8) -> i64 { var n: i64 = 0; while s[n] != (0 as u8) { n = n + 1 } return sys_write(1, s, n) }
called by 1: main
10func crm_equal(a: *u8, b: *u8) -> i64 { var i: i64 = 0; while a[i] != (0 as u8) { if a[i] != b[i] { return 0 }; i = i + 1 }; if b[i] != (0 as u8) { return 0 }; return 1 }
called by 1: main
11func crm_decimal(s: *u8) -> i64
called by 1: main
23func crm_append(p: *u8, at: i64, s: *u8) -> i64
called by 1: main
29func main(argc: i64, argv: *i64) -> i64