removes -M ("memory madness")

This commit is contained in:
Joe Bryan 2018-11-16 13:21:01 -05:00
parent 295f4424b8
commit 46ca578fb0
2 changed files with 1 additions and 8 deletions

View File

@ -515,7 +515,6 @@
c3_o nuu; // -c, new pier c3_o nuu; // -c, new pier
c3_o qui; // -q, quiet c3_o qui; // -q, quiet
c3_o vno; // -V, turn on +verb c3_o vno; // -V, turn on +verb
c3_o mem; // -M, memory madness
c3_o rep; // -R, report build info c3_o rep; // -R, report build info
} u3_opts; } u3_opts;

View File

@ -78,16 +78,11 @@ _main_getopt(c3_i argc, c3_c** argv)
u3_Host.ops_u.veb = c3n; u3_Host.ops_u.veb = c3n;
u3_Host.ops_u.qui = c3n; u3_Host.ops_u.qui = c3n;
u3_Host.ops_u.nuu = c3n; u3_Host.ops_u.nuu = c3n;
u3_Host.ops_u.mem = c3n;
u3_Host.ops_u.rep = c3n; u3_Host.ops_u.rep = c3n;
u3_Host.ops_u.kno_w = DefaultKernel; u3_Host.ops_u.kno_w = DefaultKernel;
while ( (ch_i=getopt(argc, argv,"s:B:I:w:t:f:k:l:n:p:LSabcdgmqvxFMPDXR")) != -1 ) { while ( (ch_i=getopt(argc, argv,"s:B:I:w:t:f:k:l:n:p:LSabcdgmqvxFPDXR")) != -1 ) {
switch ( ch_i ) { switch ( ch_i ) {
case 'M': {
u3_Host.ops_u.mem = c3y;
break;
}
case 'B': { case 'B': {
u3_Host.ops_u.pil_c = strdup(optarg); u3_Host.ops_u.pil_c = strdup(optarg);
break; break;
@ -292,7 +287,6 @@ u3_ve_usage(c3_i argc, c3_c** argv)
"-x Exit immediately\n", "-x Exit immediately\n",
"-r host Initial peer address\n", "-r host Initial peer address\n",
"-l port Initial peer port\n", "-l port Initial peer port\n",
"-M Memory madness\n",
"-f Fuzz testing\n", "-f Fuzz testing\n",
"-k stage Start at Hoon kernel version stage\n", "-k stage Start at Hoon kernel version stage\n",
"-R Report urbit build info\n", "-R Report urbit build info\n",