glibc-desc.xml 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. <sect2><title>&nbsp;</title><para>&nbsp;</para></sect2>
  2. <sect2><title>Descriptions</title>
  3. <para>Last checked against version &glibc-contversion;.</para>
  4. <sect3><title>Program file descriptions</title>
  5. <sect4><title>catchsegv</title>
  6. <para>catchsegv can be used to create a stack trace when a program
  7. terminates with a segmentation fault.</para></sect4>
  8. <sect4><title>gencat</title>
  9. <para>gencat generates message catalogues.</para></sect4>
  10. <sect4><title>getconf</title>
  11. <para>getconf displays the system configuration values for filesystem
  12. specific variables.</para></sect4>
  13. <sect4><title>getent</title>
  14. <para>getent gets entries from an administrative database.</para></sect4>
  15. <sect4><title>glibcbug</title>
  16. <para>glibcbug creates a bug report about glibc and and mails it to the
  17. bug email address.</para></sect4>
  18. <sect4><title>iconv</title>
  19. <para>iconv performs character set conversion.</para></sect4>
  20. <sect4><title>iconvconfig</title>
  21. <para>iconvconfig creates fastloading iconv module
  22. configuration file.</para></sect4>
  23. <sect4><title>ldconfig</title>
  24. <para>ldconfig configures the dynamic linker run time bindings.</para></sect4>
  25. <sect4><title>ldd</title>
  26. <para>ldd prints the shared libraries required by each program or shared
  27. library specified on the command line.</para></sect4>
  28. <sect4><title>lddlibc4</title>
  29. <para>lddlibc4 assists ldd with object files.</para></sect4>
  30. <sect4><title>locale</title>
  31. <para>locale is a Perl program which tells the compiler to enable
  32. (or disable) the use of POSIX locales for built-in operations.</para></sect4>
  33. <sect4><title>localedef</title>
  34. <para>localedef compiles locale specifications.</para></sect4>
  35. <sect4><title>mtrace</title>
  36. <para>mtrace prints the multicast path from a source to a receiver (an IP
  37. trace query).</para></sect4>
  38. <sect4><title>nscd</title>
  39. <para>nscd is a daemon that provides a cache for the most common name
  40. service requests.</para></sect4>
  41. <sect4><title>nscd_nischeck</title>
  42. <para>nscd_nischeck checks whether or not secure mode is necessary for
  43. NIS+ lookup.</para></sect4>
  44. <sect4><title>pcprofiledump</title>
  45. <para>pcprofiledump dumps information generated by
  46. PC profiling.</para></sect4>
  47. <sect4><title>pt_chown</title>
  48. <para>pt_chown sets the owner, group and access permission of the
  49. slave pseudo terminal corresponding to the master pseudo terminal passed
  50. on file descriptor `3'. This is the helper program for the `grantpt'
  51. function. It is not intended to be run directly from the command
  52. line.</para></sect4>
  53. <sect4><title>rpcgen</title>
  54. <para>rpcgen generates C code to implement the RPC protocol.</para></sect4>
  55. <sect4><title>rpcinfo</title>
  56. <para>rpcinfo makes an RPC call to an RPC server.</para></sect4>
  57. <sect4><title>sln</title>
  58. <para>sln symbolically links dest to source. It is statically linked,
  59. needing no dynamic linking at all. Thus sln is useful to make symbolic
  60. links to dynamic libraries if the dynamic linking system for some reason
  61. is nonfunctional.</para></sect4>
  62. <sect4><title>sprof</title>
  63. <para>sprof reads and displays shared object profiling data.</para></sect4>
  64. <sect4><title>tzselect</title>
  65. <para>tzselect asks the user for information about the current location and
  66. outputs the resulting time zone description to standard output.</para></sect4>
  67. <sect4><title>xtrace</title>
  68. <para>xtrace traces execution of program by printing the currently executed
  69. function.</para></sect4>
  70. <sect4><title>zdump</title>
  71. <para>zdump is the time zone dumper.</para></sect4>
  72. <sect4><title>zic</title>
  73. <para>zic is the time zone compiler.</para></sect4>
  74. </sect3>
  75. <sect3><title>Library file descriptions</title>
  76. <sect4><title>ld.so</title>
  77. <para>ld.so is the helper program for shared library
  78. executables.</para></sect4>
  79. <sect4><title>libBrokenLocale</title>
  80. <para>Used by software, such as Mozilla, to solve broken locales.</para></sect4>
  81. <sect4><title>libSegFault</title>
  82. <para>libSegFault is a segmentation fault signal handler. It tries to catch
  83. segfaults.</para></sect4>
  84. <sect4><title>libanl</title>
  85. <para>libanl is an asynchronous name lookup library.</para></sect4>
  86. <sect4><title>libbsd-compat</title>
  87. <para>libbsd-compat provides the portability needed in order to run certain
  88. programs in Linux.</para></sect4>
  89. <sect4><title>libc, libc_nonshared</title>
  90. <para>These files constitute the main C library. The C library is a
  91. collection of commonly used functions in programs.
  92. This way a programmer doesn't need to create his own functions for every
  93. single task. The most common things like writing a string to the screen
  94. are already present and at the disposal of the programmer.</para>
  95. <para>The C library (actually almost every library) comes in two flavors:
  96. a dynamic and a static one. In short, when a program uses a static C
  97. library, the code from the C library is copied into the executable file.
  98. When a program uses a dynamic library, the executable will not
  99. contain the code from the C library, but instead a routine that loads
  100. the functions from the library at the time the program is run. This
  101. means a significant decrease in the file size of a program. The
  102. documentation that comes with the C library describes this in more
  103. detail, as it is too complicated to explain here in one or two
  104. lines.</para></sect4>
  105. <sect4><title>libcrypt</title>
  106. <para>libcrypt is the cryptography library.</para></sect4>
  107. <sect4><title>libdl</title>
  108. <para>libdl is the dynamic linking interface library.</para></sect4>
  109. <sect4><title>libg</title>
  110. <para>libg is a runtime library for g++.</para></sect4>
  111. <sect4><title>libieee</title>
  112. <para>libieee is the IEEE floating point library.</para></sect4>
  113. <sect4><title>libm</title>
  114. <para>libm is the mathematical library.</para></sect4>
  115. <sect4><title>libmcheck</title>
  116. <para>libmcheck contains code run at boot.</para></sect4>
  117. <sect4><title>libmemusage</title>
  118. <para>libmemusage is used by memusage to help collect information about the
  119. memory usage of a program.</para></sect4>
  120. <sect4><title>libnsl</title>
  121. <para>libnsl is the network services library.</para></sect4>
  122. <sect4><title>libnss_compat, libnss_dns, libnss_files,
  123. libnss_hesiod, libnss_nis, libnss_nisplus</title>
  124. <para>The basic idea is to put the implementation of the different services
  125. offered to access the databases in separate modules. This has some
  126. advantages:</para>
  127. <itemizedlist>
  128. <listitem><para>contributors can add new services without adding them to
  129. GNU C library,</para></listitem>
  130. <listitem><para>the modules can be updated separately,</para></listitem>
  131. <listitem><para>the C library image is smaller.</para></listitem>
  132. </itemizedlist></sect4>
  133. <sect4><title>libpcprofile</title>
  134. <para>Code used by the kernel to track CPU time spent in functions, source
  135. code lines, and instructions.</para></sect4>
  136. <sect4><title>libpthread</title>
  137. <para>The POSIX threads library.</para></sect4>
  138. <sect4><title>libresolv</title>
  139. <para>Functions in this library provide for creating, sending, and
  140. interpreting packets to the Internet domain name servers.</para></sect4>
  141. <sect4><title>librpcsvc</title>
  142. <para>Functions in this library provide miscellaneous RPC services.</para></sect4>
  143. <sect4><title>librt</title>
  144. <para>Functions in this library provide most of the interfaces specified by
  145. the POSIX.1b Realtime Extension.</para></sect4>
  146. <sect4><title>libthread_db</title>
  147. <para>Functions is this library are useful for building debuggers for
  148. multi-threaded programs.</para></sect4>
  149. <sect4><title>libutil</title>
  150. <para>Contains code for "standard" functions used in many different Unix
  151. utilities.</para></sect4>
  152. </sect3>
  153. </sect2>