Changes between Initial Version and Version 1 of Ticket #2090, comment 2


Ignore:
Timestamp:
2013-02-27T17:46:08Z (12 years ago)
Author:
Martin Sjölund

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2090, comment 2

    initial v1  
    99  case (1,2,3) then ...;
    1010  case (_,_,_) then ...;
    11   case STACKOVERFLOW(messages) /* Requires language extension, but looks nice */
     11  case STACKOVERFLOW(positions) /* Requires language extension, but looks nice */
    1212    equation
    1313      symbols = System.backtrace_symbols(positions);
    1414      Error.addMessage(Error.STACK_OVERFLOW, {stringDelimitList(symbols,"\n")});
    1515    then fail();
    16   case SIGSEGV(messages) /* We could possibly catch more interrupt signals, too */
     16  case SIGSEGV(positions) /* We could possibly catch more interrupt signals, too */
    1717    equation
    1818      symbols = System.backtrace_symbols(positions);
     
    3030    list<String> symbols;
    3131  case NOSIGNAL() then ...; /* Regular code */
    32   case STACKOVERFLOW(messages) /* Requires language extension, but looks nice */
     32  case STACKOVERFLOW(positions) /* Requires language extension, but looks nice */
    3333    equation
    3434      symbols = System.backtrace_symbols(positions);
    3535      Error.addMessage(Error.STACK_OVERFLOW, {stringDelimitList(symbols,"\n")});
    3636    then fail();
    37   case SIGSEGV(messages) /* We could possibly catch more interrupt signals, too. Like SIGUSR1, SIGUSR2 */
     37  case SIGSEGV(positions) /* We could possibly catch more interrupt signals, too. Like SIGUSR1, SIGUSR2 */
    3838    equation
    3939      symbols = System.backtrace_symbols(positions);