[9c14ae9] | 1 | % T I T L E P A G E
|
---|
| 2 | % -------------------
|
---|
| 3 | % Last updated May 24, 2011, by Stephen Carr, IST-Client Services
|
---|
| 4 | % The title page is counted as page `i' but we need to suppress the
|
---|
| 5 | % page number. We also don't want any headers or footers.
|
---|
| 6 | \pagestyle{empty}
|
---|
| 7 | \pagenumbering{roman}
|
---|
| 8 |
|
---|
| 9 | % The contents of the title page are specified in the "titlepage"
|
---|
| 10 | % environment.
|
---|
| 11 | \begin{titlepage}
|
---|
| 12 | \begin{center}
|
---|
| 13 | \vspace*{1.0cm}
|
---|
| 14 |
|
---|
| 15 | \Huge
|
---|
| 16 | {\bf Resource Management and Tuples in \CFA}
|
---|
| 17 |
|
---|
| 18 | \vspace*{1.0cm}
|
---|
| 19 |
|
---|
| 20 | \normalsize
|
---|
| 21 | by \\
|
---|
| 22 |
|
---|
| 23 | \vspace*{1.0cm}
|
---|
| 24 |
|
---|
| 25 | \Large
|
---|
[0111dc7] | 26 | Robert Schluntz \\
|
---|
[9c14ae9] | 27 |
|
---|
| 28 | \vspace*{3.0cm}
|
---|
| 29 |
|
---|
| 30 | \normalsize
|
---|
| 31 | A thesis \\
|
---|
| 32 | presented to the University of Waterloo \\
|
---|
| 33 | in fulfillment of the \\
|
---|
| 34 | thesis requirement for the degree of \\
|
---|
| 35 | Master of Mathematics \\
|
---|
| 36 | in \\
|
---|
| 37 | Computer Science \\
|
---|
| 38 |
|
---|
| 39 | \vspace*{2.0cm}
|
---|
| 40 |
|
---|
| 41 | Waterloo, Ontario, Canada, 2017 \\
|
---|
| 42 |
|
---|
| 43 | \vspace*{1.0cm}
|
---|
| 44 |
|
---|
[0111dc7] | 45 | \copyright\ Robert Schluntz 2017 \\
|
---|
[9c14ae9] | 46 | \end{center}
|
---|
| 47 | \end{titlepage}
|
---|
| 48 |
|
---|
| 49 | % The rest of the front pages should contain no headers and be numbered using Roman numerals starting with `ii'
|
---|
| 50 | \pagestyle{plain}
|
---|
| 51 | \setcounter{page}{2}
|
---|
| 52 |
|
---|
| 53 | \cleardoublepage % Ends the current page and causes all figures and tables that have so far appeared in the input to be printed.
|
---|
| 54 | % In a two-sided printing style, it also makes the next page a right-hand (odd-numbered) page, producing a blank page if necessary.
|
---|
| 55 |
|
---|
| 56 |
|
---|
| 57 |
|
---|
| 58 | % D E C L A R A T I O N P A G E
|
---|
| 59 | % -------------------------------
|
---|
| 60 | % The following is the sample Delaration Page as provided by the GSO
|
---|
| 61 | % December 13th, 2006. It is designed for an electronic thesis.
|
---|
| 62 | \noindent
|
---|
| 63 | 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.
|
---|
| 64 |
|
---|
| 65 | \bigskip
|
---|
| 66 |
|
---|
| 67 | \noindent
|
---|
| 68 | I understand that my thesis may be made electronically available to the public.
|
---|
| 69 |
|
---|
| 70 | \cleardoublepage
|
---|
| 71 | %\newpage
|
---|
| 72 |
|
---|
| 73 | % A B S T R A C T
|
---|
| 74 | % ---------------
|
---|
| 75 |
|
---|
| 76 | \begin{center}\textbf{Abstract}\end{center}
|
---|
| 77 |
|
---|
[7493339] | 78 | \CFA is a modern, non-object-oriented extension of the C programming language.
|
---|
[0111dc7] | 79 | This thesis addresses several critical deficiencies of C, notably: resource management, a limited function-return mechanism, and unsafe variadic functions.
|
---|
| 80 | To solve these problems, two fundamental language features are introduced: tuples and constructors/destructors.
|
---|
[7493339] | 81 | While these features exist in prior programming languages, the contribution of this work is engineering these features into a highly complex type system.
|
---|
[0111dc7] | 82 | C is an established language with a dedicated user-base.
|
---|
| 83 | 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.
|
---|
[9c14ae9] | 84 |
|
---|
| 85 | \cleardoublepage
|
---|
| 86 | %\newpage
|
---|
| 87 |
|
---|
[0111dc7] | 88 | % % A C K N O W L E D G E M E N T S
|
---|
| 89 | % % -------------------------------
|
---|
[9c14ae9] | 90 |
|
---|
[0111dc7] | 91 | % \begin{center}\textbf{Acknowledgements}\end{center}
|
---|
[9c14ae9] | 92 |
|
---|
[0111dc7] | 93 | % % I would like to thank all the little people who made this possible.
|
---|
| 94 | % TODO
|
---|
| 95 | % \cleardoublepage
|
---|
| 96 | % %\newpage
|
---|
[9c14ae9] | 97 |
|
---|
[0111dc7] | 98 | % % D E D I C A T I O N
|
---|
| 99 | % % -------------------
|
---|
[9c14ae9] | 100 |
|
---|
[0111dc7] | 101 | % \begin{center}\textbf{Dedication}\end{center}
|
---|
[9c14ae9] | 102 |
|
---|
[0111dc7] | 103 | % % This is dedicated to the one I love.
|
---|
| 104 | % TODO
|
---|
| 105 | % \cleardoublepage
|
---|
| 106 | % %\newpage
|
---|
[9c14ae9] | 107 |
|
---|
| 108 | % T A B L E O F C O N T E N T S
|
---|
| 109 | % ---------------------------------
|
---|
| 110 | \renewcommand\contentsname{Table of Contents}
|
---|
| 111 | \tableofcontents
|
---|
| 112 | \cleardoublepage
|
---|
| 113 | \phantomsection
|
---|
| 114 | %\newpage
|
---|
| 115 |
|
---|
| 116 | % L I S T O F T A B L E S
|
---|
| 117 | % ---------------------------
|
---|
| 118 | \addcontentsline{toc}{chapter}{List of Tables}
|
---|
| 119 | \listoftables
|
---|
| 120 | \cleardoublepage
|
---|
| 121 | \phantomsection % allows hyperref to link to the correct page
|
---|
| 122 | %\newpage
|
---|
| 123 |
|
---|
[0111dc7] | 124 | % % L I S T O F F I G U R E S
|
---|
| 125 | % % -----------------------------
|
---|
| 126 | % \addcontentsline{toc}{chapter}{List of Figures}
|
---|
| 127 | % \listoffigures
|
---|
| 128 | % \cleardoublepage
|
---|
| 129 | % \phantomsection % allows hyperref to link to the correct page
|
---|
| 130 | % %\newpage
|
---|
[9c14ae9] | 131 |
|
---|
| 132 | % L I S T O F S Y M B O L S
|
---|
| 133 | % -----------------------------
|
---|
| 134 | % To include a Nomenclature section
|
---|
| 135 | % \addcontentsline{toc}{chapter}{\textbf{Nomenclature}}
|
---|
| 136 | % \renewcommand{\nomname}{Nomenclature}
|
---|
| 137 | % \printglossary
|
---|
| 138 | % \cleardoublepage
|
---|
| 139 | % \phantomsection % allows hyperref to link to the correct page
|
---|
| 140 | % \newpage
|
---|
| 141 |
|
---|
| 142 | % Change page numbering back to Arabic numerals
|
---|
| 143 | \pagenumbering{arabic}
|
---|
| 144 |
|
---|