diff options
| author | Manuel Traut <manut@linutronix.de> | 2011-01-27 00:52:19 +0100 |
|---|---|---|
| committer | Manuel Traut <manut@linutronix.de> | 2011-01-27 00:52:19 +0100 |
| commit | 7e5883bbd6e699d1fcee0814c5a172d6348bd63c (patch) | |
| tree | 3df8a00a9727ff0e2c020d2e07304fdb00c83e3d /linux-basics/linux-processes | |
| parent | 6fb0950420424ff27f6aa89429a763409b088ed6 (diff) | |
convert the rest to the new buildsys format
Signed-off-by: Manuel Traut <manut@linutronix.de>
Diffstat (limited to 'linux-basics/linux-processes')
| -rw-r--r-- | linux-basics/linux-processes/Makefile | 4 | ||||
| -rw-r--r-- | linux-basics/linux-processes/pres_linux-processes_en.tex | 54 |
2 files changed, 11 insertions, 47 deletions
diff --git a/linux-basics/linux-processes/Makefile b/linux-basics/linux-processes/Makefile index 4663d52..d641258 100644 --- a/linux-basics/linux-processes/Makefile +++ b/linux-basics/linux-processes/Makefile @@ -1,7 +1,7 @@ all: for pdf in `ls -1 *.tex` ; do \ - pdflatex $$pdf; \ - pdflatex $$pdf; \ + TEXINPUTS=`pwd`/../..:.:..:$(TEXINPUTS) pdflatex $$pdf; \ + TEXINPUTS=`pwd`/../..:.:..:$(TEXINPUTS) pdflatex $$pdf; \ done clean: diff --git a/linux-basics/linux-processes/pres_linux-processes_en.tex b/linux-basics/linux-processes/pres_linux-processes_en.tex index 73582d8..f7774c3 100644 --- a/linux-basics/linux-processes/pres_linux-processes_en.tex +++ b/linux-basics/linux-processes/pres_linux-processes_en.tex @@ -1,52 +1,15 @@ -\documentclass[11pt]{beamer} - -%\usepackage{ngerman} -\usepackage{times} -\usepackage{graphicx} -\usepackage{pgf,pgfarrows,pgfnodes,pgfautomata,pgfheaps} -\usepackage{amsmath,amssymb} -\usepackage[latin1]{inputenc} -\usepackage{listings,color} -\definecolor{lbcolor}{RGB}{255,210,150} -\lstset{ - language=C, - numbers=left, - stepnumber=1, - numbersep=5pt, - numberstyle=\tiny, - breaklines=true, - breakautoindent=true, - postbreak=\space, - tabsize=2, - basicstyle=\ttfamily\footnotesize, - showspaces=false, - showstringspaces=false, - extendedchars=true, - backgroundcolor=\color{lbcolor}, - keywordstyle=\bf , - commentstyle=\color{green}, - stringstyle=\color{red} -} - -\mode<presentation> -{ - \usetheme{linutronix} -} - % on the following slides, include icon in the left sidebar \def\lximg{/usr/share/lx/icons/fueller.png} -\title{Linux process mangagement / Scheduling / Daemons} -\institute{Linutronix GmbH} - -\begin{document} +\input{configpres} -\frame{ \titlepage } +\title{Linux process mangagement / Scheduling / Daemons} +\maketitle % stop displaying 'fueller.png' on the following slides \def\lximg{none} -\section{Process Management} +\subsection{Process Management} \begin{frame} \frametitle{Process creation} From the operatings system's point of view, there are basically two steps, @@ -96,7 +59,7 @@ jan 5416 [...] SNs [...] bash The first column in the STAT field shows the process state. \end{frame} -\section{Scheduling} +\subsection{Scheduling} \begin{frame} \frametitle{The LINUX Scheduler} \begin{itemize} @@ -193,7 +156,7 @@ Scheduling policies: \end{verbatim} \end{frame} -\section{Daemons} +\subsection{Daemons} \begin{frame} \frametitle{Daemons} \begin{alertblock}{What is a Daemon?} @@ -214,11 +177,12 @@ working directory and so on...) \end{itemize} \end{frame} -\section*{sources} +\subsection{sources} \begin{frame} \begin{thebibliography}{1} \bibitem{kerisk10} The Linux Programming Interface (Michael Kerisk), no starch press, ISBN 978-1-59327-220-3 \end{thebibliography} \end{frame} -\end{document} + +\input{tailpres} |
