% T I T L E P A G E % ------------------- % Last updated May 24, 2011, by Stephen Carr, IST-Client Services % The title page is counted as page `i' but we need to suppress the % page number. We also don't want any headers or footers. \pagestyle{empty} \pagenumbering{roman} % The contents of the title page are specified in the "titlepage" % environment. \begin{titlepage} \begin{center} \vspace*{1.0cm} \Huge {\bf Concurrency in \CFA} \vspace*{1.0cm} \normalsize by \\ \vspace*{1.0cm} \Large Thierry Delisle \\ \vspace*{3.0cm} \normalsize A thesis \\ presented to the University of Waterloo \\ in fulfillment of the \\ thesis requirement for the degree of \\ Master of Mathematics \\ in \\ Computer Science \\ \vspace*{2.0cm} Waterloo, Ontario, Canada, 2018 \\ \vspace*{1.0cm} \copyright\ Thierry Delisle 2018 \\ \end{center} \end{titlepage} % The rest of the front pages should contain no headers and be numbered using Roman numerals starting with `ii' \pagestyle{plain} \setcounter{page}{2} \cleardoublepage % Ends the current page and causes all figures and tables that have so far appeared in the input to be printed. % In a two-sided printing style, it also makes the next page a right-hand (odd-numbered) page, producing a blank page if necessary. % D E C L A R A T I O N P A G E % ------------------------------- % The following is the sample Delaration Page as provided by the GSO % December 13th, 2006. It is designed for an electronic thesis. \noindent %I hereby declare that I am the sole author of this thesis. This is a true copy of the thesis, including any required final revisions, as accepted by my examiners. \bigskip \noindent I hereby declare that I am the sole author of this thesis. This is a true copy of the thesis, including any required final revisions, as accepted by my examiners. I understand that my thesis may be made electronically available to the public. \cleardoublepage %\newpage % A B S T R A C T % --------------- \begin{center}\textbf{Abstract}\end{center} \CFA is a modern, non-object-oriented extension of the C programming language. This thesis serves as a definition and an implementation for the concurrency and parallelism \CFA offers. These features are created from scratch due to the lack of concurrency in ISO C. Lightweight threads are introduced into the language. In addition, monitors are introduced as a high-level tool for control-flow based synchronization and mutual-exclusion. The main contributions of this thesis are two-fold: it extends the existing semantics of monitors introduce by~\cite{Hoare74} to handle monitors in groups and also details the engineering effort needed to introduce these features as core language features. Indeed, these features are added with respect to expectations of C programmers, and integrate with the \CFA type-system and other language features. \cleardoublepage %\newpage % A C K N O W L E D G E M E N T S % ------------------------------- \begin{center}\textbf{Acknowledgements}\end{center} I would like to thank my supervisor, Professor Peter Buhr, for his guidance through my degree as well as the editing of this document. I would like to thank Professors Martin Karsten and Gregor Richards, for reading my thesis and providing helpful feedback. Thanks to Aaron Moss, Rob Schluntz and Andrew Beach for their work on the \CFA project as well as all the discussions which have helped me concretize the ideas in this thesis. Finally, I acknowledge that this has been possible thanks to the financial help offered by the David R. Cheriton School of Computer Science and the corporate partnership with Huawei Ltd. \cleardoublepage %\newpage % % D E D I C A T I O N % % ------------------- % \begin{center}\textbf{Dedication}\end{center} % % This is dedicated to the one I love. % TODO % \cleardoublepage % %\newpage % T A B L E O F C O N T E N T S % --------------------------------- \renewcommand\contentsname{Table of Contents} \tableofcontents \cleardoublepage \phantomsection %\newpage % L I S T O F T A B L E S % --------------------------- \addcontentsline{toc}{chapter}{List of Tables} \listoftables \cleardoublepage \phantomsection % allows hyperref to link to the correct page %\newpage % L I S T O F F I G U R E S % ----------------------------- \addcontentsline{toc}{chapter}{List of Figures} \listoffigures \cleardoublepage \phantomsection % allows hyperref to link to the correct page %\newpage % L I S T O F L I S T I N G S % ----------------------------- \addcontentsline{toc}{chapter}{List of Listings} \lstlistoflistings \cleardoublepage \phantomsection % allows hyperref to link to the correct page %\newpage % L I S T O F S Y M B O L S % ----------------------------- % To include a Nomenclature section % \addcontentsline{toc}{chapter}{\textbf{Nomenclature}} % \renewcommand{\nomname}{Nomenclature} % \printglossary % \cleardoublepage % \phantomsection % allows hyperref to link to the correct page % \newpage % L I S T O F T A B L E S % ----------------------------- \addcontentsline{toc}{chapter}{List of Acronyms} \printglossary[type=\acronymtype,title={List of Acronyms}] \cleardoublepage \phantomsection % allows hyperref to link to the correct page % Change page numbering back to Arabic numerals \pagenumbering{arabic}