View Javadoc

1   package com.tapina.robe.swi.clib.signal;
2   
3   import com.tapina.robe.runtime.Environment;
4   import com.tapina.robe.swi.clib.Stub;
5   
6   /***
7    * This function sets that any future occurrences of the signal a1 will use the signal handler at address a2.
8    * Returns: address of previous signal handler.
9    */
10  public class Signal extends Stub {
11      public void executeStub(Environment environment) {
12          log.warning("Warning: signal() has not changed handler for signal " + environment.getCpu().R[0]);
13      }
14  }