|
169 | 169 | \end{itemize}
|
170 | 170 | \end{slide}
|
171 | 171 |
|
172 |
| -\label{UNIXSTANDARDS} |
| 172 | +\hlabel{UNIXSTANDARDS} |
173 | 173 |
|
174 | 174 | \begin{itemize}
|
175 | 175 | \item The very basic information is that the area of UNIX standards is very
|
|
244 | 244 | \end{itemize}
|
245 | 245 | \end{slide}
|
246 | 246 |
|
247 |
| -\label{POSIX} |
| 247 | +\hlabel{POSIX} |
248 | 248 |
|
249 | 249 | \begin{itemize}
|
250 | 250 | \item The first document is \emph{IEEE Std POSIX1003.1-1988}, formerly simply
|
|
346 | 346 | \end{enumerate}
|
347 | 347 | \end{slide}
|
348 | 348 |
|
349 |
| -\label{REF_PROGRAMMING} |
| 349 | +\hlabel{REF_PROGRAMMING} |
350 | 350 |
|
351 | 351 | \begin{enumerate}
|
352 | 352 | \item One of the best book on programming in Unix environment. Does not cover
|
|
362 | 362 | recommended.
|
363 | 363 | \item UNIX specifications.
|
364 | 364 | \item Detailed descriptions of system calls and functions.
|
365 |
| -\item \label{POSIX4} A book that did not fit the slide and covers topics outside |
| 365 | +\item \hlabel{POSIX4} A book that did not fit the slide and covers topics outside |
366 | 366 | of the scope of this class: Gall\-meis\-ter, B. R.: \emsl{POSIX.4 Programmers
|
367 | 367 | Guide: Programming for the Real World}, O'Reilly; \nth{1} edition, 1995. A great
|
368 | 368 | book on real-time POSIX extensions with a beautiful cover. See also pages
|
|
410 | 410 | %%%%%
|
411 | 411 |
|
412 | 412 | \pdfbookmark[1]{The C Programming Language}{C}
|
413 |
| -\label{C_LANGUAGE} |
| 413 | +\hlabel{C_LANGUAGE} |
414 | 414 |
|
415 | 415 | \begin{slide}
|
416 | 416 | \sltitle{The C Programming Language}
|
|
499 | 499 | \end{itemize}
|
500 | 500 | \end{slide}
|
501 | 501 |
|
502 |
| -\label{BYTE_ORDERING} |
| 502 | +\hlabel{BYTE_ORDERING} |
503 | 503 |
|
504 | 504 | \begin{itemize}
|
505 | 505 | \item Be careful when using tools like \texttt{hexdump} that by default print
|
|
551 | 551 | \end{itemize}
|
552 | 552 | \end{slide}
|
553 | 553 |
|
554 |
| -\label{NEWLINECHAR} |
| 554 | +\hlabel{NEWLINECHAR} |
555 | 555 |
|
556 | 556 | \begin{itemize}
|
557 | 557 | \item \emsl{LF}, \emph{line feed}, sometimes also referred to as \emph{new
|
|
1092 | 1092 | \end{minipage}
|
1093 | 1093 | \end{slide}
|
1094 | 1094 |
|
1095 |
| -\label{MAKE}. |
| 1095 | +\hlabel{MAKE}. |
1096 | 1096 |
|
1097 | 1097 | \begin{itemize}
|
1098 | 1098 | \item You could compile and link the program via one invocation of a compiler,
|
|
1268 | 1268 | \end{itemize}
|
1269 | 1269 | \end{slide}
|
1270 | 1270 |
|
1271 |
| -\label{RUNTIMELINKER} |
| 1271 | +\hlabel{RUNTIMELINKER} |
1272 | 1272 |
|
1273 | 1273 | \begin{itemize}
|
1274 | 1274 | \item An ELF object format is explained on page \pageref{ELF}.
|
|
1365 | 1365 | \item You can also edit ELF objects via \texttt{elfedit(1)} on Solaris. You can
|
1366 | 1366 | change \texttt{RUNPATH}, for example.
|
1367 | 1367 | \end{itemize}
|
1368 |
| -\item \label{EVIL_LDLIBPATH} In general, you should not use |
| 1368 | +\item \hlabel{EVIL_LDLIBPATH} In general, you should not use |
1369 | 1369 | \texttt{LD\_LIBRARY\_PATH} for anything else than debugging during the
|
1370 | 1370 | development or when moving libraries between directories. You can find lots of
|
1371 | 1371 | articles on ``why is \texttt{LD\_LIBRARY\_PATH} evil?'' etc. For example,
|
|
1413 | 1413 | \end{itemize}
|
1414 | 1414 | \end{slide}
|
1415 | 1415 |
|
1416 |
| -\label{API_ABI} |
| 1416 | +\hlabel{API_ABI} |
1417 | 1417 |
|
1418 | 1418 | \begin{itemize}
|
1419 | 1419 | \item In short -- an API is source code based while an ABI is binary based.
|
|
1482 | 1482 | -1077941135
|
1483 | 1483 | \end{verbatim}
|
1484 | 1484 |
|
1485 |
| -\item \label{ABI_MAIN} Example: \example{lib-abi/abi-main.c} (see the block |
| 1485 | +\item \hlabel{ABI_MAIN} Example: \example{lib-abi/abi-main.c} (see the block |
1486 | 1486 | comment in the file on how to use other files located in the same directory).
|
1487 | 1487 | \item To change an ABI safely, you need library versioning -- if the library
|
1488 | 1488 | ABI change is not backward compatible, a bumped up version needs to prevent
|
|
1867 | 1867 | different from an empty string.
|
1868 | 1868 | \item To go through all the command line arguments, you can either use
|
1869 | 1869 | \emph{argc} or test for \texttt{NULL} in \texttt{argv[i]}.
|
1870 |
| -\item \label{SHELL_ARGV0} \texttt{argv[0]} is sometimes a source of additional |
| 1870 | +\item \hlabel{SHELL_ARGV0} \texttt{argv[0]} is sometimes a source of additional |
1871 | 1871 | information. For example, commands \texttt{cp}, \texttt{mv}, and \texttt{ln} may
|
1872 | 1872 | be linked to the same executable (Solaris). The value of \texttt{argv[0]} then
|
1873 | 1873 | tells the process what function it is supposed to perform. Another example -- if
|
|
1912 | 1912 | prog && echo "success" || echo "failure"
|
1913 | 1913 | \end{verbatim}
|
1914 | 1914 | Example: \example{main/return-256.c}.
|
1915 |
| -\item \label{RETURN255} Never use \texttt{return (-1)} in \texttt{main} nor |
| 1915 | +\item \hlabel{RETURN255} Never use \texttt{return (-1)} in \texttt{main} nor |
1916 | 1916 | \texttt{exit(-1)}. Based on the information in the previous paragraph,
|
1917 | 1917 | from \texttt{-1} you will get \texttt{255} as the return value you get in the
|
1918 | 1918 | shell in \texttt{\$?}. It just creates confusion.
|
|
1927 | 1927 | \emsl{without} printing a new line), and calls functions registered via
|
1928 | 1928 | \texttt{atexit()}, and possibly other actions based on a specific system.
|
1929 | 1929 | Example: \example{exit/exit.c} and \example{exit/atexit-abort.c}
|
1930 |
| -\item \label{MAIN_C} Example on printing out command line arguments: |
| 1930 | +\item \hlabel{MAIN_C} Example on printing out command line arguments: |
1931 | 1931 | \example{main/print-argv.c}
|
1932 | 1932 | \item If a process is killed by a signal, you can get the signal number from its
|
1933 | 1933 | return value as presented by the shell. See page
|
|
2175 | 2175 | processing.
|
2176 | 2176 | \item When a undefined option is used, \texttt{getopt} will print an error;
|
2177 | 2177 | this can be suppressed by setting the \texttt{opterr} variable to 0.
|
2178 |
| -\item \label{GETOPT} Example: shell script \example{getopt/getopts.sh} |
| 2178 | +\item \hlabel{GETOPT} Example: shell script \example{getopt/getopts.sh} |
2179 | 2179 | rewritten to C language using the \texttt{getopt} function:
|
2180 | 2180 | \example{getopt/getopt.c}
|
2181 | 2181 | \end{itemize}
|
|
2499 | 2499 | \item Many \texttt{libc} functions and functions from other libraries set
|
2500 | 2500 | \texttt{errno} on failure as well. You always need to consult the relevant
|
2501 | 2501 | documentation.
|
2502 |
| -\item \label{ERRNO} It is common nowadays that \texttt{errno} is in reality |
| 2502 | +\item \hlabel{ERRNO} It is common nowadays that \texttt{errno} is in reality |
2503 | 2503 | defined in \texttt{libc} as a dereferenced pointer to an integer returned by a
|
2504 | 2504 | function (returned pointer is specific to a userland thread) and the value is
|
2505 | 2505 | set right after the instruction for the system call. For example, on the i386
|
|
2557 | 2557 | %%%%%
|
2558 | 2558 |
|
2559 | 2559 | \begin{itemize}
|
2560 |
| -\label{ERR} |
| 2560 | +\hlabel{ERR} |
2561 | 2561 | \item The \funnm{errx}() function behaves as \funnm{err}() but does not use
|
2562 | 2562 | \texttt{errno} to print that extra error message. Similarly, \funnm{warnx}().
|
2563 | 2563 | \item These functions are very handy especially for smaller programs as they are
|
|
0 commit comments