Exemplo n.º 1
0
int EIOPartWriter::
deactivatePart()
{
  closeStreams();
  me = -1;
  return 0;
}
Exemplo n.º 2
0
int EIOPartWriter::
closePartitioning()
{
  if(me != -1)
    {
      closeStreams();
    }
  return 0;
}
Exemplo n.º 3
0
void Process_free(Process_T *P) {
        assert(P && *P);
        FREE((*P)->working_directory);
        if (Process_isRunning(*P)) 
                Process_kill(*P);
        closeParentPipes(*P);
        closeStreams(*P);
        FREE(*P);
}
Exemplo n.º 4
0
/* winaxlExit() must always be called before exiting. */
void
winaxlExit(int n)
{
        closeStreams();
        PostMessage(hParent, wm_Compiler_End, 0, 0L);
        SetActiveWindow(hParent);
        if (n != EXIT_SUCCESS) {
            PostQuitMessage(n);
            LongJmp(winExitBuf, 1);
        }
        else
            PostQuitMessage(n);
}
Exemplo n.º 5
0
int EIOPartReader::closePartitioning(int& part)
{
  me = -1;
  closeStreams();
  return 0;
}