From owner-svn-doc-head@FreeBSD.ORG Fri Feb 8 00:22:50 2013 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 4F78DD49; Fri, 8 Feb 2013 00:22:50 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 421E3947; Fri, 8 Feb 2013 00:22:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r180MoLa065031; Fri, 8 Feb 2013 00:22:50 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r180Mog9065030; Fri, 8 Feb 2013 00:22:50 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201302080022.r180Mog9065030@svn.freebsd.org> From: Eitan Adler Date: Fri, 8 Feb 2013 00:22:50 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r40911 - head/en_US.ISO8859-1/books/faq X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Feb 2013 00:22:50 -0000 Author: eadler Date: Fri Feb 8 00:22:49 2013 New Revision: 40911 URL: http://svnweb.freebsd.org/changeset/doc/40911 Log: This question is unlikely to surprise people anymore. Noted by: alfred Approved by: bcr (mentor, implicit) Modified: head/en_US.ISO8859-1/books/faq/book.xml Modified: head/en_US.ISO8859-1/books/faq/book.xml ============================================================================== --- head/en_US.ISO8859-1/books/faq/book.xml Fri Feb 8 00:22:46 2013 (r40910) +++ head/en_US.ISO8859-1/books/faq/book.xml Fri Feb 8 00:22:49 2013 (r40911) @@ -8325,27 +8325,6 @@ panic: page fault - - Why has dlsym() stopped working for - ELF executables? - - - - The ELF toolchain does not, by default, make the symbols - defined in an executable visible to the dynamic linker. - Consequently dlsym() searches on - handles obtained from calls to dlopen(NULL, - flags) will fail to find such symbols. - - If you want to search, using - dlsym(), for symbols present in the - main executable of a process, you need to link the - executable using the - option to the ELF linker (&man.ld.1;). - - - - How can I increase or reduce the kernel address space on i386?