Go Back

What Are The Default SET TRAP IGNORE settings for Traditional Synergy in Visual Studio Debugging?

SET TRAP IGNORE is documented to:
 

SET TRAP IGNORE implies that TRAP ON is set but disables debug interruption if an error or exception in the specified list occurs, where error[,...] is one or more runtime error numbers or fully qualified exception class names, separated by commas (or spaces). Any SET TRAP command (ON, OFF, or IGNORE) releases any previous error trap list.

Bolding is mine.

By default the Traditional Synergy in Visual Studio Debugger will set a pre-determined list of unhandled exceptions to ignore.

What is this list?

1 Answer
0   | Posted by Ace Olszowka to Visual Studio Integration on 9/11/2018 2:21 PM
Best Answer chosen by Ace Olszowka
Ace Olszowka
As of 10.3.3e:
 
!SET TRAP IGNORE 511,40,64,1,18,53

Which Equates To:

511 - ERR_RTNNF - https://www.synergex.com/docs/errors/run/trap/runRTNNF.htm
40 - ERR_LOCKED - https://www.synergex.com/docs/errors/run/trap/runLOCKED.htm
64 - ERR_RNF - https://www.synergex.com/docs/errors/run/trap/runRNF.htm
1 - ERR_EOF - https://www.synergex.com/docs/errors/run/trap/runEOF.htm
18 - ERR_FNF - https://www.synergex.com/docs/errors/run/trap/runFNF.htm
53 - ERR_KEYNOT - https://www.synergex.com/docs/errors/run/trap/runKEYNOT.htm

9/11/2018 2:25 PM   0  
Please log in to comment or answer this question.