You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: presentation/takeaway.tex
+2-2
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@
7
7
\only<3>{
8
8
\begin{itemize}
9
9
\item No matter how many stack frames between the raising point and the exception handler
10
-
\item Unless... see \#4
10
+
\item Unless... see \hyperlink{bt-collection}{\beamergotobutton{\#5}}
11
11
\end{itemize}
12
12
}
13
13
\item<4-> Catching an exception is linear complexity $O(n)$ in terms of number of installed exception \emph{handlers}
@@ -22,7 +22,7 @@
22
22
\item Catching an exception early, in terms of traversed handlers, is cheaper
23
23
\end{itemize}
24
24
}
25
-
\item<5-> Compiling with debug information (\mintinline{sh}{-g}) and activating backtrace collection (\mintinline{sh}{OCAMLRUNPARAM=b} or \mintinline{ocaml}{Printexc.record_backtrace b}) causes complexity of jumping to an handler to be $O(n)$ in terms of number of stack frames
25
+
\item<5-> \hypertarget<5->{bt-collection}{} Compiling with debug information (\mintinline{sh}{-g}) and activating backtrace collection (\mintinline{sh}{OCAMLRUNPARAM=b} or \mintinline{ocaml}{Printexc.record_backtrace b}) causes complexity of jumping to an handler to be $O(n)$ in terms of number of stack frames
26
26
\only<5>{
27
27
\begin{itemize}
28
28
\item Use \funcname{raise\_notrace} to inhibit the backtrace collection
0 commit comments