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
TheOTLeaveInterrupt
function 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
OTEnterInterrupt
function must be matched by a call to theOTLeaveInterrupt
function.SPECIAL CONSIDERATIONS
Do not make this call without having already called theOTEnterInterrupt
function.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
InitOpenTransport
or theInitOpenTransportUtilities
function).SEE ALSO
TheOTEnterInterrupt
function.