Browse Source

Missed a few references to NtFile.

Darryl Pogue 13 years ago
parent
commit
0168e89487
  1. 29
      Sources/Plasma/NucleusLib/pnAsyncCoreExe/Private/Nt/pnAceNt.cpp

29
Sources/Plasma/NucleusLib/pnAsyncCoreExe/Private/Nt/pnAceNt.cpp

@ -152,28 +152,6 @@ static void INtOpDispatch (
INtSocketOpCompleteSocketWrite((NtSock *) ntObj, (NtOpSocketWrite *) op); INtSocketOpCompleteSocketWrite((NtSock *) ntObj, (NtOpSocketWrite *) op);
break; break;
case kOpQueuedFileRead:
case kOpQueuedFileWrite:
INtFileOpCompleteQueuedReadWrite((NtFile *) ntObj, (NtOpFileReadWrite *) op);
// operation converted into kOpFileWrite so we cannot move
// to next operation until write operation completes
return;
case kOpFileRead:
case kOpFileWrite:
ASSERT(bytes != (uint32_t) -1);
if (!INtFileOpCompleteReadWrite((NtFile *) ntObj, (NtOpFileReadWrite *) op, bytes))
return;
break;
case kOpFileFlush:
INtFileOpCompleteFileFlush((NtFile *) ntObj, (NtOpFileFlush *) op);
break;
case kOpSequence:
INtFileOpCompleteSequence((NtFile *) ntObj, (NtOpFileSequence *) op);
break;
DEFAULT_FATAL(opType); DEFAULT_FATAL(opType);
} }
@ -329,10 +307,6 @@ void INtConnCompleteOperation (NtObject * ntObj) {
DWORD err = GetLastError(); DWORD err = GetLastError();
switch (ntObj->ioType) { switch (ntObj->ioType) {
case kNtFile:
INtFileDelete((NtFile *) ntObj);
break;
case kNtSocket: case kNtSocket:
INtSockDelete((NtSock *) ntObj); INtSockDelete((NtSock *) ntObj);
break; break;
@ -393,7 +367,6 @@ void NtInitialize () {
); );
} }
INtFileInitialize();
INtSocketInitialize(); INtSocketInitialize();
} }
@ -403,7 +376,6 @@ void NtInitialize () {
// shut down the program is to simply let the atexit() handler take care of it. // shut down the program is to simply let the atexit() handler take care of it.
void NtDestroy (unsigned exitThreadWaitMs) { void NtDestroy (unsigned exitThreadWaitMs) {
// cleanup modules that post completion notifications as part of their shutdown // cleanup modules that post completion notifications as part of their shutdown
INtFileStartCleanup();
INtSocketStartCleanup(exitThreadWaitMs); INtSocketStartCleanup(exitThreadWaitMs);
// cleanup worker threads // cleanup worker threads
@ -434,7 +406,6 @@ void NtDestroy (unsigned exitThreadWaitMs) {
s_waitEvent = 0; s_waitEvent = 0;
} }
INtFileDestroy();
INtSocketDestroy(); INtSocketDestroy();
} }

Loading…
Cancel
Save