Add preliminary OsVendorReset function.

This commit is contained in:
Harold L Hunt II 2004-01-08 05:07:13 +00:00
parent 861da6546c
commit 8fec9f9cbc

View file

@ -147,6 +147,11 @@ static int nextFreeClientID; /* always MIN free client ID */
static int nClients; /* number of authorized clients */
#if defined(DDXOSRESET)
extern void OsVendorReset ();
#endif
CallbackListPtr ClientStateCallback;
char dispatchException = 0;
char isItTimeToYield;
@ -466,6 +471,9 @@ Dispatch(void)
}
dispatchException &= ~DE_PRIORITYCHANGE;
}
#if defined(DDXOSRESET)
OsVendorReset ();
#endif
KillAllClients();
DEALLOCATE_LOCAL(clientReady);
dispatchException &= ~DE_RESET;