aboutsummaryrefslogtreecommitdiff
path: root/docs/client_design.md
diff options
context:
space:
mode:
authorOrgad Shaneh <orgads@gmail.com>2016-11-15 15:06:22 +0200
committerMike Frysinger <vapier@chromium.org>2016-11-18 17:24:37 +0000
commit11d7510c0889aeff1eadbda1a9c83d9b493f69fe (patch)
tree999539944983c027d1174131eb03a2453b513b15 /docs/client_design.md
parentGitIgnore: Add dump_syms_mac (diff)
downloadbreakpad-11d7510c0889aeff1eadbda1a9c83d9b493f69fe.tar.xz
Update links
code.google.com is obsolete. Fix all broken markdown links while at it. Change-Id: I6a337bf4b84eacd5f5c749a4ee61331553279009 Reviewed-on: https://chromium-review.googlesource.com/411800 Reviewed-by: Mike Frysinger <vapier@chromium.org>
Diffstat (limited to 'docs/client_design.md')
-rw-r--r--docs/client_design.md9
1 files changed, 4 insertions, 5 deletions
diff --git a/docs/client_design.md b/docs/client_design.md
index 30ffb2fb..9f85655d 100644
--- a/docs/client_design.md
+++ b/docs/client_design.md
@@ -69,8 +69,8 @@ amount of work from a crashed process.
The mechanisms for installing an exception handler vary between operating
systems. On Windows, it’s a relatively simple matter of making one call to
-register a [top-level exception filter]
-(http://msdn.microsoft.com/library/en-us/debug/base/setunhandledexceptionfilter.asp)
+register a [top-level exception
+filter](http://msdn.microsoft.com/library/en-us/debug/base/setunhandledexceptionfilter.asp)
callback function. On most Unix-like systems such as Linux, processes are
informed of exceptions by the delivery of a signal, so an exception handler
takes the form of a signal handler. The native mechanism to catch exceptions on
@@ -178,9 +178,8 @@ didn’t actually handle an exception. This function may be useful for developer
who want to test their applications with Breakpad enabled but still retain the
ability to use traditional debugging techniques. It also allows a
Breakpad-enabled application to coexist with a platform’s native crash reporting
-system, such as Mac OS X’ [CrashReporter]
-(http://developer.apple.com/technotes/tn2004/tn2123.html) and [Windows Error
-Reporting](http://msdn.microsoft.com/isv/resources/wer/).
+system, such as Mac OS X’ [CrashReporter](http://developer.apple.com/technotes/tn2004/tn2123.html)
+and [Windows Error Reporting](http://msdn.microsoft.com/isv/resources/wer/).
Typically, when Breakpad handles an exception fully and no debuggers are
involved, the crashed process will terminate.