diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2014-02-26 22:57:28 +0100 |
---|---|---|
committer | Thomas Schwinge <thomas@codesourcery.com> | 2014-02-26 22:57:28 +0100 |
commit | da06687275d25430519365402e3be0800d612a68 (patch) | |
tree | ea88c95ca78c16be540f84e3cd56e08fcd435350 /faq | |
parent | 2674414598f3a95a9b2c84c418b17a7d27a9e524 (diff) | |
parent | d216c51189addeaa03a0c92ac5d7708e004fa148 (diff) |
Merge remote-tracking branch 'darnassus--hurd-web/master'
Conflicts:
community/meetings.mdwn
contributing.mdwn
hurd/translator/pfinet/implementation.mdwn
Diffstat (limited to 'faq')
-rw-r--r-- | faq/debugging_translators.mdwn | 4 | ||||
-rw-r--r-- | faq/libpthread_dlopen.mdwn | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/faq/debugging_translators.mdwn b/faq/debugging_translators.mdwn index 195b2276..3cb4a2ef 100644 --- a/faq/debugging_translators.mdwn +++ b/faq/debugging_translators.mdwn @@ -1,4 +1,4 @@ -[[!meta copyright="Copyright © 2007, 2008, 2013 Free Software Foundation, +[[!meta copyright="Copyright © 2007, 2008, 2013, 2014 Free Software Foundation, Inc."]] [[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable @@ -16,7 +16,7 @@ during it, on Debian you need the `hurd-dbg` and `libc0.3-dbg` packages installe If you need to debug the initialization of the translator, start the translator like - $ settrans -P /foo /usr/bin/env LD_LIBRARY_PATH=/usr/lib/debug /hurd/foofs + $ settrans -Pa /foo /usr/bin/env LD_LIBRARY_PATH=/usr/lib/debug /hurd/foofs The `-P` option will make it pause and you will be able to attach [[debugging/GDB]] to the process. diff --git a/faq/libpthread_dlopen.mdwn b/faq/libpthread_dlopen.mdwn index 5fb77767..94d091a4 100644 --- a/faq/libpthread_dlopen.mdwn +++ b/faq/libpthread_dlopen.mdwn @@ -1,4 +1,4 @@ -[[!meta copyright="Copyright © 2013 Free Software Foundation, Inc."]] +[[!meta copyright="Copyright © 2013, 2014 Free Software Foundation, Inc."]] [[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable id="license" text="Permission is granted to copy, distribute and/or modify this @@ -20,6 +20,6 @@ in errors such as: ./pthread/../sysdeps/generic/pt-mutex-timedlock.c:70: __pthread_mutex_timedlock_internal: Assertion `__pthread_threads' failed. -This can be worked around by explicitly pre-loading libpthread, for example: +This can be worked around by making the application link against libpthread (i.e. not only the plugin, but also the main binary), or without recompiling by explicitly pre-loading libpthread, for example: $ LD_PRELOAD=/lib/i386-gnu/libpthread.so.0.3 [application] |