~ubuntu-branches/ubuntu/hardy/vice/hardy

« back to all changes in this revision

Viewing changes to src/arch/os2/signals.c

  • Committer: Bazaar Package Importer
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2007-10-07 07:05:46 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20071007070546-81yy0twlka7p2t0e
Tags: 1.22-1
* New upstream version (closes: #428280).
* Correct link to HTML documentation in manpage (closes: #409567).
* Fix most packaging mistakes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
#include "monitor.h"
38
38
#include "signals.h"
39
39
 
40
 
#ifdef __IBMC__
 
40
#if defined(__IBMC__) || defined(WATCOM_COMPILE)
41
41
//   #define SIGILL       1       /* illegal instruction - invalid function image    */
42
42
//   #define SIGSEGV      2       /* invalid access to memory                        */
43
43
//   #define SIGFPE       3       /* floating point exception                        */
146
146
        // signal(SIGUSR1,  break64);
147
147
        // signal(SIGUSR2,  break64);
148
148
        signal(SIGBREAK, break64);
149
 
#ifdef __IBMC__
 
149
#if defined(__IBMC__) || defined(WATCOM_COMPILE)
150
150
        // signal(SIGUSR3,  break64);
151
151
#else
152
152
        signal(SIGPIPE,  break64);