code wiki / _hdl_build / nx_dev_pipeline_test.nx

nx_dev_pipeline_test.nx

buildroot/runtime/_hdl_build/nx_dev_pipeline_test.nx

7255 B83 linesdepth 3pulls 3 transitivereach 0 importersview sourcekind gate/prooftopic dev
docsdependenciesstructsconstsfunctions

about

nx_dev_pipeline_test.nx -- walk the happy path + the full research-escalation loop, prove no capability conflation (Builder builds / Engineer tests), the SLA + Conductor watchdog, and emit knowledge/DEV_PIPELINE.md. Exit 0 on 12/12. license_tier: ORIGINAL

dependencies 2 imports · 0 importers

nx_dev_pipeline.nx nx_syscalls.nx nx_dev_pipeline_test.nx

imports: nx_dev_pipeline.nxnx_syscalls.nx

imported by: nobody (leaf or entry point)

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

main dt_puts sys_write dt_arrow dt_puts ↻ dp_stage_name dp_next sys_openat_wr dt_w sys_write ↻ sys_close sys_mmap dp_owner dp_sla_ok dp_watchdog_stuck sys_write ↻ sys_exit

structs

none

consts

none

functions

8func dt_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 2: dt_arrowmain calls 1: sys_write
9func dt_arrow(s: *u8) -> i64 { dt_puts(s); dt_puts(" -> " as *u8); return 0 }
called by 1: main calls 1: dt_puts
10func dt_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 main() -> i64