Module Name: src
Committed By: christos
Date: Sat Aug 13 22:24:24 UTC 2011
Modified Files:
src/libexec/ld.elf_so: rtld.c
Log Message:
disable debugging that makes us core dump
To generate a diff of this commit:
cvs rdiff -u -r1.151 -r1.152 src/libexec/ld.elf_so/rtld.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/libexec/ld.elf_so/rtld.c
diff -u src/libexec/ld.elf_so/rtld.c:1.151 src/libexec/ld.elf_so/rtld.c:1.152
--- src/libexec/ld.elf_so/rtld.c:1.151 Sat Jun 25 01:45:12 2011
+++ src/libexec/ld.elf_so/rtld.c Sat Aug 13 18:24:24 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: rtld.c,v 1.151 2011/06/25 05:45:12 nonaka Exp $ */
+/* $NetBSD: rtld.c,v 1.152 2011/08/13 22:24:24 christos Exp $ */
/*
* Copyright 1996 John D. Polstra.
@@ -40,7 +40,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: rtld.c,v 1.151 2011/06/25 05:45:12 nonaka Exp $");
+__RCSID("$NetBSD: rtld.c,v 1.152 2011/08/13 22:24:24 christos Exp $");
#endif /* not lint */
#include <sys/param.h>
@@ -403,8 +403,10 @@
debug = 1;
dbg(("sp = %p, argc = %ld, argv = %p <%s> relocbase %p", sp,
(long)sp[2], &sp[3], (char *) sp[3], (void *)relocbase));
+#if 0
dbg(("got is at %p, dynamic is at %p", _GLOBAL_OFFSET_TABLE_,
&_DYNAMIC));
+#endif
dbg(("_ctype_ is %p", _ctype_));
#endif