Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(283)

Side by Side Diff: tools/mac/exception_port_tool.ad

Issue 1305893010: Don’t trigger EXC_CORPSE_NOTIFY on OS X 10.11 (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Crashpad Authors. All rights reserved. 1 // Copyright 2014 The Crashpad Authors. All rights reserved.
2 // 2 //
3 // Licensed under the Apache License, Version 2.0 (the "License"); 3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License. 4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at 5 // You may obtain a copy of the License at
6 // 6 //
7 // http://www.apache.org/licenses/LICENSE-2.0 7 // http://www.apache.org/licenses/LICENSE-2.0
8 // 8 //
9 // Unless required by applicable law or agreed to in writing, software 9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS, 10 // distributed under the License is distributed on an "AS IS" BASIS,
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 + 43 +
44 *target*='TARGET'::: 44 *target*='TARGET':::
45 'TARGET' defines which target’s exception ports to set: *host*, *task*, or 45 'TARGET' defines which target’s exception ports to set: *host*, *task*, or
46 *thread*. The default value of 'TARGET' is *task*. Operations on *host* are 46 *thread*. The default value of 'TARGET' is *task*. Operations on *host* are
47 restricted to the superuser. 47 restricted to the superuser.
48 + 48 +
49 *mask*='MASK'::: 49 *mask*='MASK':::
50 'MASK' defines the mask of exception types to handle, from 50 'MASK' defines the mask of exception types to handle, from
51 +<mach/exception_types.h>+. This can be *BAD_ACCESS*, *BAD_INSTRUCTION*, 51 +<mach/exception_types.h>+. This can be *BAD_ACCESS*, *BAD_INSTRUCTION*,
52 *ARITHMETIC*, *EMULATION*, *SOFTWARE*, *BREAKPOINT*, *SYSCALL*, *MACH_SYSCALL*, 52 *ARITHMETIC*, *EMULATION*, *SOFTWARE*, *BREAKPOINT*, *SYSCALL*, *MACH_SYSCALL*,
53 *RPC_ALERT*, *CRASH*, *RESOURCE*, or *GUARD*. Different exception types may be 53 *RPC_ALERT*, *CRASH*, *RESOURCE*, *GUARD*, or *CORPSE_NOTIFY*. Different
54 combined by combining them with pipe characters (*|*). The special value *ALL* 54 exception types may be combined by combining them with pipe characters (*|*).
55 includes each exception type except for *CRASH*. To truly specify all exception 55 The special value *ALL* includes each exception type except for *CRASH*. To
56 types including *CRASH*, use *ALL|CRASH*. The default value of 'MASK' is 56 truly specify all exception types including *CRASH*, use *ALL|CRASH*. The
57 *CRASH*. 57 default value of 'MASK' is *CRASH*.
58 + 58 +
59 *behavior*='BEHAVIOR'::: 59 *behavior*='BEHAVIOR':::
60 'BEHAVIOR' defines the specific exception handler routine to be called when an 60 'BEHAVIOR' defines the specific exception handler routine to be called when an
61 exception occurs. This can be *DEFAULT*, *STATE*, or *STATE_IDENTITY*. *MACH* 61 exception occurs. This can be *DEFAULT*, *STATE*, or *STATE_IDENTITY*. *MACH*
62 may also be specified by combining them with pipe characters (*|*). The most 62 may also be specified by combining them with pipe characters (*|*). The most
63 complete set of exception information is provided with *STATE_IDENTITY|MACH*. 63 complete set of exception information is provided with *STATE_IDENTITY|MACH*.
64 Not all exception servers implement all possible behaviors. The default value of 64 Not all exception servers implement all possible behaviors. The default value of
65 'BEHAVIOR' is *DEFAULT|MACH*. 65 'BEHAVIOR' is *DEFAULT|MACH*.
66 + 66 +
67 *flavor*='FLAVOR'::: 67 *flavor*='FLAVOR':::
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 179
180 *127*:: 180 *127*::
181 The program specified by 'COMMAND' could not be found. 181 The program specified by 'COMMAND' could not be found.
182 182
183 == See Also 183 == See Also
184 184
185 man_link:catch_exception_tool[1], 185 man_link:catch_exception_tool[1],
186 man_link:on_demand_service_tool[1] 186 man_link:on_demand_service_tool[1]
187 187
188 include::../../doc/support/man_footer.ad[] 188 include::../../doc/support/man_footer.ad[]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698