Important: The information in this document is obsolete and should not be used for new development.
OTLeaveInterrupt
Notifies Open Transport that you are done calling Open Transport functions from a hardware interrupt.C INTERFACE
void OTLeaveInterrupt(void)C++ INTERFACE
None. C++ applications use the C interface to this function.DISCUSSION
TheOTLeaveInterruptfunction informs Open Transport that you are no longer calling Open Transport from within a routine that runs at hardware interrupt time. You call this function after you call the last Open Transport function you want to call from within the interrupt, but before you return from your interrupt handler.Every call to the
OTEnterInterruptfunction must be matched by a call to theOTLeaveInterruptfunction.SPECIAL CONSIDERATIONS
Do not make this call without having already called theOTEnterInterruptfunction.For 680x0 based code, you must be sure that your A5 world is set correctly before making this call (that is, you must set it to the same value it had when you called the
InitOpenTransportor theInitOpenTransportUtilitiesfunction).SEE ALSO
TheOTEnterInterruptfunction.