X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FApplications%2Fbomb_src%2Fmain.c;h=af5d094a0da81f80d68526c88d4a116ea4d3351b;hb=a897ce08ed162eff3e06db533c490c4dd5b23e54;hp=944d6c3249fec52f4906304488d83f49f714cbf2;hpb=270e5fe88b0666021a7a6393334db7feeb8245f8;p=tpg%2Facess2.git diff --git a/Usermode/Applications/bomb_src/main.c b/Usermode/Applications/bomb_src/main.c index 944d6c32..af5d094a 100644 --- a/Usermode/Applications/bomb_src/main.c +++ b/Usermode/Applications/bomb_src/main.c @@ -57,6 +57,7 @@ int main(int argc, char *argv[]) return 0; } tid = clone(0, stack+stackSize-stackOffset); + //_SysDebug("tid = %i", tid); if( tid == 0 ) { // Sleep forever (TODO: Fix up the stack so it can nuke) @@ -66,7 +67,6 @@ int main(int argc, char *argv[]) printf("Clone failed\n"); return 0; } - printf("stack = %p, tid = %i\n", stack, tid); } }