Line data Source code
1 : #include "../fd_config.h" 2 : #include "../fd_action.h" 3 : 4 : void 5 : mem_cmd_fn( args_t * args FD_PARAM_UNUSED, 6 0 : config_t * config ) { 7 0 : fd_topo_print_log( 1, &config->topo ); 8 0 : } 9 : 10 : action_t fd_action_mem = { 11 : .name = "mem", 12 : .args = NULL, 13 : .fn = mem_cmd_fn, 14 : .require_config = 1, 15 : .perm = NULL, 16 : .description = "Print workspace memory and tile topology information", 17 : };