% 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 Resource Management and Tuples in \CFA} \vspace*{1.0cm} \normalsize by \\ \vspace*{1.0cm} \Large Robert Schluntz \\ \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, 2017 \\ \vspace*{1.0cm} \copyright\ Robert Schluntz 2017 \\ \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} \CFA is a modern, non-object-oriented extension of the C programming language. This thesis addresses several critical deficiencies of C, notably: resource management, a limited function-return mechanism, and unsafe variadic functions. To solve these problems, two fundamental language features are introduced: tuples and constructors/destructors. While these features exist in prior programming languages, the contribution of this work is engineering these features into a highly complex type system. C is an established language with a dedicated user-base. An important goal is to add new features in a way that naturally feels like C, to appeal to this core user-base, and due to huge amounts of legacy code, maintaining backwards compatibility is crucial. \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 all the little people who made this possible. % TODO % \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 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 % Change page numbering back to Arabic numerals \pagenumbering{arabic}