summaryrefslogtreecommitdiff
path: root/realtime/rt-app-basics
diff options
context:
space:
mode:
authorManuel Traut <manut@linutronix.de>2011-01-27 00:52:19 +0100
committerManuel Traut <manut@linutronix.de>2011-01-27 00:52:19 +0100
commit7e5883bbd6e699d1fcee0814c5a172d6348bd63c (patch)
tree3df8a00a9727ff0e2c020d2e07304fdb00c83e3d /realtime/rt-app-basics
parent6fb0950420424ff27f6aa89429a763409b088ed6 (diff)
convert the rest to the new buildsys format
Signed-off-by: Manuel Traut <manut@linutronix.de>
Diffstat (limited to 'realtime/rt-app-basics')
-rw-r--r--realtime/rt-app-basics/Makefile4
-rw-r--r--realtime/rt-app-basics/pres_rt-app-basics_en.tex73
2 files changed, 12 insertions, 65 deletions
diff --git a/realtime/rt-app-basics/Makefile b/realtime/rt-app-basics/Makefile
index 4663d52..d641258 100644
--- a/realtime/rt-app-basics/Makefile
+++ b/realtime/rt-app-basics/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/realtime/rt-app-basics/pres_rt-app-basics_en.tex b/realtime/rt-app-basics/pres_rt-app-basics_en.tex
index 6179851..90b2ce3 100644
--- a/realtime/rt-app-basics/pres_rt-app-basics_en.tex
+++ b/realtime/rt-app-basics/pres_rt-app-basics_en.tex
@@ -1,70 +1,17 @@
-\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{Realtime application development using Linux-RT\_PREEMPT}
-\institute{Linutronix GmbH}
-
-\begin{document}
+\input{configpres}
-\frame{ \titlepage }
+\title{Realtime application development using Linux-RT\_PREEMPT}
+\maketitle
% stop displaying 'fueller.png' on the following slides
\def\lximg{none}
-%\AtBeginSection[]
-%{
-% \begin{frame}<beamer>
-% \tableofcontents[currentsection,currentsubsection]
-% \end{frame}
-%}
-
-\AtBeginSubsection[]
-{
- \begin{frame}<beamer>
- \tableofcontents[currentsection,currentsubsection]
- \end{frame}
-}
-
-\begin{frame}
- \tableofcontents
-\end{frame}
+\subsection{RT\_PREEMPT Realtime development}
-\section{Basics}
+\subsubsection{Basics}
\begin{frame}[fragile]
\frametitle{Check sched\_rt\_runtime\_us!!}
\begin{verbatim}
@@ -125,7 +72,7 @@ for (i = 0; i < SAVE_STACK_SIZE; i += sysconf(_SC_PAGESIZE))
\end{lstlisting}
\end{frame}
-\section{Clocks and Timers}
+\subsubsection{Clocks and Timers}
\begin{frame}
\frametitle{Clocks: Basic}
@@ -207,7 +154,7 @@ int main(void)
\end{lstlisting}
\end{frame}
-\section{Locking}
+\subsubsection{Locking}
\begin{frame}
\frametitle{Locking}
\begin{itemize}
@@ -237,7 +184,7 @@ pthread_mutex_destroy(&master_lock);
\end{lstlisting}
\end{frame}
-\section{Signalling}
+\subsubsection{Signalling}
\begin{frame}
\frametitle{Signalling mechanisms}
\begin{itemize}
@@ -294,7 +241,7 @@ pthread_mutex_unlock(&mutex);
\end{lstlisting}
\end{frame}
-\section*{sources}
+\subsubsection{sources}
\begin{frame}
\frametitle{sources}
\small
@@ -305,4 +252,4 @@ pthread_mutex_unlock(&mutex);
\end{thebibliography}
\end{frame}
-\end{document}
+\input{tailpres}