0

私はマルチスレッド コードにかなり慣れていないので、誰かが私の問題を解決してくれることを願っています。

ONC/RPCサーバーとその他のもので構成されるマルチパートプログラムがあります(「もの」は私の質問には関係ありませんが、サーバーのプログラムに含まれている必要があります)。svc_run() は決して戻らないので、それを独自のスレッドに入れ、プログラムの最後で単にスレッドを終了して、次の作業に進むことにしました。

ただし、私のプログラムは拡張されており、スレッドを終了するのではなく、ONC/RPC サーバーをクリーンかつ安全に終了またはクローズしたいと考えています。ただし、svc_run() から安全に戻る方法がわかりません。誰でもこれを手伝ってもらえますか?

同じ問題を抱えている他の人を何人か見つけましたが、誰も彼らに応答していないようです. svc_run() を server_process() 関数と同じファイルに単純に移動しようとしましたが、fd_set の構造が正しく設定されず (すべてが 0)、関数が失敗します。

svc_run() は、http ://sourceforge.net/projects/oncrpc-windows/ にあるコードで作成された dll で定義されています。

コードの関連要素を提供しています。また、svc_exit() は、私が現在使用している onc/rpc システムの一部ではないようです。

長い質問で申し訳ありませんが、よろしくお願いします。

レックス

これが私のコードです:

 //Code in Initialization of MFC Dialog
myThread = AfxBeginThread(startServing,NULL,THREAD_PRIORITY_NORMAL,0,0,NULL);

 // Thread that starts the server

 UINT __cdecl startServing(LPVOID pParam)
{
   if(server_process())
    AfxMessageBox(_T("Error Starting the VXI 11 Server."));

   AfxEndThread(0,TRUE); //I never get here.
   return 0;
 }

//How I would like to stop the thread:
void myDlg::OnBnClickedQuit()
{
   DWORD threadStatus;
   endThread = 1; //static or extern that could be monitored if svc_run() 
                  //wasn't in a dll
   threadStatus = WaitForSingleObject(myThread->m_hThread, INFINITE);
   OnOk(); //for the ok modal to close the progam

} 

//How I end up stopping my thread
void myDlg::OnBnClickedQuit()
{
   TerminateThread(myThread->m_hThread,1);
   OnOk(); //for the ok modal to close the progam

} 


int server_process()
{
  //Portmap and server registration code
  .
  .
  .
  .
   svc_run(); //ideally I'd be able to monitor a global in here
   (void)fprintf(stderr, "svc_run returned\n");
#ifdef WIN32
   rpc_nt_exit();
#endif
   return(1);

 }// end of server Process

// Function in the dll I'm calling
void svc_run()
{
#ifdef FD_SETSIZE
        fd_set readfds;
#else
      int readfds;
#endif /* def FD_SETSIZE */
#ifndef WIN32
    extern int errno;
#endif

    for (;;) { 
#ifdef FD_SETSIZE
    readfds = svc_fdset;
#else
    readfds = svc_fds;
#endif /* def FD_SETSIZE */
#ifdef WIN32
    switch (select(0 /* unused in winsock */, &readfds, NULL, NULL,
#else
    switch (select(_rpc_dtablesize(), &readfds, (int *)0, (int *)0,
#endif
               (struct timeval *)0)) {
    case -1:
#ifdef WIN32
        if (WSAerrno == EINTR) {
#else
        if (errno == EINTR) {
#endif
            continue;
        }
        perror("svc_run: - select failed");
        return;
    case 0:
        continue;
    default:
        svc_getreqset(&readfds);
       }
   }
}
4

1 に答える 1

0

さて、答えはあなたの質問にあります。独自に作成svc_run()し、条件付きで無限ループを変更する必要があります。

while(!done) {
  select(....)
  svc_getreqset(&readfds);
}
于 2012-04-25T18:01:24.960 に答える