diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-10-28 08:24:07 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-10-28 08:24:07 +0000 |
commit | 88197030d5805d95d3e71d0aab71f44c6895b3b2 (patch) | |
tree | f25d4b4cc3579b52338c90b598b3daf8f82ceed3 /manual/startup.texi | |
parent | 94833f118b7b78a89595427c9d1a27f38084dbb9 (diff) | |
download | glibc-88197030d5805d95d3e71d0aab71f44c6895b3b2.tar.gz |
[BZ #5222]
2007-10-28 Ulrich Drepper <drepper@redhat.com>
[BZ #5222]
* elf/dl-load.c (_dl_rtld_di_serinfo): Correct handling of short
path elements in counting mode.
Diffstat (limited to 'manual/startup.texi')
-rw-r--r-- | manual/startup.texi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/manual/startup.texi b/manual/startup.texi index 79c79683f7..bccc708667 100644 --- a/manual/startup.texi +++ b/manual/startup.texi @@ -31,7 +31,7 @@ system, and telling the system the program is done. A program starts another program with the @code{exec} family of system calls. This chapter looks at program startup from the execee's point of view. To -see the event from the execor's point of view, @xref{Executing a File}. +see the event from the execor's point of view, see @ref{Executing a File}. @menu * Program Arguments:: Parsing your program's command-line arguments. @@ -309,9 +309,9 @@ character, since this is assumed to terminate the string. The value of an environment variable can be accessed with the @code{getenv} function. This is declared in the header file -@file{stdlib.h}. All of the following functions can be safely used in -multi-threaded programs. It is made sure that concurrent modifications -to the environment do not lead to errors. +@file{stdlib.h}. Modifications of enviroment variables are not +allowed in Multi-threaded programs. The @code{getenv} function +can be safely used in multi-threaded programs @pindex stdlib.h @comment stdlib.h |