
133
Chapter 2 Applications Programming
to the possibility of nested signal events; however, the signal trampoline code is able
to deal with such complex events.
With the example
signal_associate
macro the trampoline code and the C han-
dler run in the processor mode at the time the interrupt occurred. They can be forced
to run in Supervisor mode by setting the Supervisor mode bit (SM–bit) when OR–ing
the DI–bit in the OPS register. Supervisor mode may be required to enable accessing
of the interrupting device when disabling the interrupt request. The address transla-
tion bits (PA and PD) may also be set at this time to turn off virtual addressing during
interrupt processing. To make these changes to the above example code, the value
0x72 should be OR–ed with the OPS register rather than the 0x2 value shown.
As described in section 2.5, a C language macro can be used to access the assem-
bly level macro instruction. When the High C 29K compiler is being used, the defini-
tion of the C macro is shown below. Users of the GCC compiler should replace the
_ASM()
call with the equivalent
asm()
C language extension.
#define signal_associate(tap_number, sig_number) \
/*int
trap_number; \
int
sig_number; */ \
_ASM(” signal_associate ”#trap_number”,”#sig_number);
When the macro is used to associate a signal number with a processor trap num-
ber, it is also necessary to supply the address of the C language signal handler called
when the signal occurs. The following example associates trap number 18 (floating–
point exception) with signal number 8. This signal is known to UNIX and HIF users
as SIGFPE; when it occurs, the C handler
sigfpe_handler
is called.
_ASM(” .include \”interrupt_macros.h\””);
signal_associate(18,8);
signal(8,sigfpe_handler);
/* trap 18, F–P */
/* signal 8 handler */‘
C language signal handlers are free of many of the restrictions which apply to
Freeze mode interrupt handlers. However, the HIF specification still restricts their
operation to some extent. Signal handlers can only use HIF services with service
numbers greater than 256. This means that
printf()
cannot be used. The reason for
this is HIF services below 256 are not reentrant, and a signal may occur while just
such a HIF service request was being processed. Return from the signal handler must
be via one of the signal return services:
sigdft
,
sigret
,
sigrep
or
sigskp
. If the signal
handler simply returns, the trampoline code will issue a sigdfl service request on be-
half of the signal handler.
A single C level signal routine can be used to dispatch several C language inter-
rupt handlers. Section 4.3.12 describes an interrupt queuing method, where interrupt
handlers run in Freeze mode and build an interrupt descriptor (bead). Each descriptor
is placed in a list (string of beads) and a
Dispatcher
routine is used to process descrip-
tors. The signal handling method described above can be used to register a C level