diff options
author | Russ Cox <rsc@swtch.com> | 2012-07-14 09:07:10 -0400 |
---|---|---|
committer | Russ Cox <rsc@swtch.com> | 2012-07-14 09:07:10 -0400 |
commit | c934984537a7673f980d731e10baec18d0c97c05 (patch) | |
tree | 290af98c8b4763983bc462e30080aacc94acdd0a /src/libmach | |
parent | 5f0bb59e0d8278945d08c167a986ef3cc691d212 (diff) | |
download | plan9port-c934984537a7673f980d731e10baec18d0c97c05.tar.gz plan9port-c934984537a7673f980d731e10baec18d0c97c05.tar.bz2 plan9port-c934984537a7673f980d731e10baec18d0c97c05.zip |
libmach: remove debug print
R=rsc
http://codereview.appspot.com/6395048
Diffstat (limited to 'src/libmach')
-rw-r--r-- | src/libmach/elfcorefreebsdamd64.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libmach/elfcorefreebsdamd64.c b/src/libmach/elfcorefreebsdamd64.c index dd7f6f94..fde6514f 100644 --- a/src/libmach/elfcorefreebsdamd64.c +++ b/src/libmach/elfcorefreebsdamd64.c @@ -113,7 +113,6 @@ elfcorefreebsdamd64(Fhdr *fp, Elf *elf, ElfNote *note) u->flags = l->rflags; u->sp = l->rsp; u->ss = l->ss; -print("core PC=%#llux SP=%#llux\n", u->ip, u->sp); if((fp->thread = realloc(fp->thread, (1+fp->nthread)*sizeof(fp->thread[0]))) == nil){ fprint(2, "warning: out of memory saving thread info\n"); |