(file) Return to ServerProcessUnix.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Service

Diff for /pegasus/src/Service/ServerProcessUnix.cpp between version 1.11 and 1.11.18.1

version 1.11, 2006/08/09 21:13:11 version 1.11.18.1, 2007/02/16 19:28:29
Line 39 
Line 39 
 #include <sys/stat.h> #include <sys/stat.h>
 #if defined(PEGASUS_OS_HPUX) #if defined(PEGASUS_OS_HPUX)
 #include <sys/pstat.h> #include <sys/pstat.h>
   #include <libgen.h>
 #endif #endif
 #include <fcntl.h> #include <fcntl.h>
 #include <unistd.h> #include <unistd.h>
Line 435 
Line 436 
   int ret_code;   int ret_code;
   ret_code = pstat_getproc(&pstru, sizeof(struct pst_status), (size_t)0, pid);   ret_code = pstat_getproc(&pstru, sizeof(struct pst_status), (size_t)0, pid);
  
   if ( (ret_code != -1 ) && (strcmp(pstru.pst_ucomm, getProcessName())) == 0)    if (ret_code != -1)
     {
         //
         // Gets the command basename disregarding the command parameters
         //
         char *execName = strchr(pstru.pst_cmd,' ');
         if (execName)
         {
             *execName = '\0';
         }
         execName = basename(pstru.pst_cmd);
   
         if (strcmp(execName, getProcessName()) == 0)
   {   {
       //       //
       // Check to see if this command process has the same pid as the       // Check to see if this command process has the same pid as the
Line 451 
Line 464 
           return true;           return true;
       }       }
   }   }
     }
 #endif #endif
 #if defined(PEGASUS_PLATFORM_LINUX_GENERIC_GNU) || defined(PEGASUS_OS_SOLARIS) #if defined(PEGASUS_PLATFORM_LINUX_GENERIC_GNU) || defined(PEGASUS_OS_SOLARIS)
   if (get_proc(pid) != -1 )   if (get_proc(pid) != -1 )


Legend:
Removed from v.1.11  
changed lines
  Added in v.1.11.18.1

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2