From 7e5883bbd6e699d1fcee0814c5a172d6348bd63c Mon Sep 17 00:00:00 2001 From: Manuel Traut Date: Thu, 27 Jan 2011 00:52:19 +0100 Subject: convert the rest to the new buildsys format Signed-off-by: Manuel Traut --- realtime/rt-app-basics/Makefile | 4 +- realtime/rt-app-basics/pres_rt-app-basics_en.tex | 73 ++++-------------------- 2 files changed, 12 insertions(+), 65 deletions(-) (limited to 'realtime/rt-app-basics') 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 -{ - \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} -% \tableofcontents[currentsection,currentsubsection] -% \end{frame} -%} - -\AtBeginSubsection[] -{ - \begin{frame} - \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} -- cgit v1.2.3