Thread: help to find some function

  1. #1
    Registered User
    Join Date
    May 2012
    Posts
    5

    help to find some function

    hey guys

    i want to write a program like process explorer. but i have problem to find some of the functions.
    in the process explorer we can find out cpu and memory usage, username and some other information about each process.
    here is my question, what is the function for cpu usage,memory usage and user name of a process?

  2. #2
    Registered User claudiu's Avatar
    Join Date
    Feb 2010
    Location
    London, United Kingdom
    Posts
    2,094
    It depends on what operating system you are using.
    1. Get rid of gets(). Never ever ever use it again. Replace it with fgets() and use that instead.
    2. Get rid of void main and replace it with int main(void) and return 0 at the end of the function.
    3. Get rid of conio.h and other antiquated DOS crap headers.
    4. Don't cast the return value of malloc, even if you always always always make sure that stdlib.h is included.

  3. #3
    Registered User
    Join Date
    May 2012
    Posts
    505
    Quote Originally Posted by desimoos View Post
    hey guys

    i want to write a program like process explorer. but i have problem to find some of the functions.
    in the process explorer we can find out cpu and memory usage, username and some other information about each process.
    here is my question, what is the function for cpu usage,memory usage and user name of a process?
    On Linux/UNIX, simply call system with ps - e. Pipe the output to a temporary file, and open it to get the data you want. You can do it more nicely with popen().

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. How do you find header of a function?
    By yougene in forum C Programming
    Replies: 4
    Last Post: 06-02-2009, 04:20 PM
  2. function to find average
    By nynicue in forum C Programming
    Replies: 4
    Last Post: 03-24-2009, 05:30 PM
  3. Cannot find Function: QueueUserWorkItem
    By pdesigns in forum Windows Programming
    Replies: 7
    Last Post: 08-08-2006, 03:18 PM
  4. Function To Find Factorials!!! Please Help
    By adzza69 in forum C++ Programming
    Replies: 22
    Last Post: 08-20-2004, 06:39 PM