Liux 는 파이프 명령 을 사용 하여 ps 를 실행 하여 cpu 와 메모리 사용량 을 가 져 옵 니 다.


#include <stdio.h>
#include <unistd.h>
int main()
{
    char caStdOutLine[1024]; // ps
    char* pcTmp = NULL;      //

    char caSelfPID[10];      // PID
    char caPSCmd[24];        // "ps aux | grep PID"

    memset( caSelfPID, 0, sizeof( caSelfPID ) );
    sprintf( caSelfPID,
             "%d",
             getpid() );

    memset( caPSCmd, 0, sizeof( caPSCmd ) );
    sprintf( caPSCmd,
             "ps aux | grep %d",
             getpid() );

    do // , ,
    {
        // , fork ,
        // shell 。
        // pclose() 。
        FILE* fp = popen( caPSCmd, // NULL shell ,
                                   // bin/sh -c ,
                                   // shell 。
                          "r" );   // shell

        if ( NULL == fp )
        {
            printf( "call popen is failed
" );
            break;
        }

        memset( caStdOutLine, 0, sizeof( caStdOutLine ) );
        while ( NULL != fgets( caStdOutLine,
                               sizeof( caStdOutLine ),
                               fp ) )
        {
            //
            pcTmp = strtok( caStdOutLine, " " );

            // , PID ,
            pcTmp = strtok( NULL, " " );
            if ( 0 != strncasecmp( caSelfPID,
                                   pcTmp,
                                   strlen( caSelfPID ) ) )
            {
                continue;
            }

            // CPU
            pcTmp = strtok( NULL, " " );
            printf( "CPU = %s %%
", pcTmp );

            // MEM
            pcTmp = strtok( NULL, " " );
            printf( "MEM = %s %%
", pcTmp );

            break;
        }

        // I/O , , shell 。
        // shell ,
        // pclose() shell exit 。
        pclose( fp );

    }while ( 0 );
}


$ gcc main.c -o test
$ ./test
CPU = 1.0 %
MEM = 0.0 %

$ ps  aux
USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
nsc      24505  1.0  0.0   2004   232 pts/0    S+   09:46   0:00 ./test

좋은 웹페이지 즐겨찾기