% 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 High Level Concurrency in \CFA} \vspace*{1.0cm} \normalsize by \\ \vspace*{1.0cm} \Large Colby Parsons \\ \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, 2023 \\ \vspace*{1.0cm} \copyright\ Colby Parsons 2023 \\ \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 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} Concurrent programs are notoriously hard to program and even harder to debug. Furthermore concurrent programs must be performant, as the introduction of concurrency into a program is often done to achieve some form of speedup. This thesis presents a suite of high level concurrent language features in \CFA, all of which are implemented with the aim of improving the performance, productivity, and safety of concurrent programs. \CFA is a non object-oriented programming language that extends C. The foundation for concurrency in \CFA was laid by Thierry Delisle, who implemented coroutines, user-level threads, and monitors\cite{Delisle18}. This thesis builds upon that groundwork and introduces a suite of concurrent features as its main contribution. The features include Go-like channels, mutex statements (similar to \CC scoped locks or Java synchronized statement), an actor system, and a Go-like select statement. The root idea behind these features are not new, but the \CFA implementations improve upon the original ideas in performance, productivity, and safety. \cleardoublepage %\newpage % A C K N O W L E D G E M E N T S % ------------------------------- \begin{center}\textbf{Acknowledgements}\end{center} \noindent To begin, I would like to thank my supervisor Professor Peter Buhr. Your guidance, wisdom and support has been invaluable in my learning and development of my research abilities, and in the implementation and writing of this thesis. \bigskip \noindent Thank you Thierry Delisle for your insight and knowledge regarding all things concurrency. You challenged my ideas and taught me skills that aid in both thinking about and writing concurrent programs. \bigskip \noindent Thanks to Michael Brooks, Andrew Beach, Fangren Yu, and Jiada Liang. Your work on \CFA continues to make it the best language it can be, and our discussions in meetings clarified the ideas that make up this thesis. \bigskip \noindent Finally, this work could not have happened without the financial support of 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} % % \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}