Thread: memory resident program

  1. #1
    Registered User
    Join Date
    Nov 2001
    Posts
    11

    memory resident program

    hi friends,
    i want to make memory resident program which resides as background process in windows and linux...
    how do i go for that?
    Feedback is the breakfast of champions...

  2. #2
    Former Member
    Join Date
    Oct 2001
    Posts
    955
    if you want to do it in windows, windows is multitasking, so any program that you make (and properly hide from the user ) would do the trick.

    As for Linux, I don't have any experience at all, but I've heard that it's multitasking too, so I assume that you can do the same thing that in Windows

    if you want to use DOS, that's more challenging!, because you have to call an interrupt (I dont remember which one) and do some other things (I once did it, but I can't ebember how it's done)

    Oskilian

  3. #3
    Registered User
    Join Date
    Nov 2001
    Posts
    65
    check out fork and execve system calls to create processes in linux and running different programs on these processes.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Program Plan
    By Programmer_P in forum C++ Programming
    Replies: 0
    Last Post: 05-11-2009, 01:42 AM
  2. Assignment Operator, Memory and Scope
    By SevenThunders in forum C++ Programming
    Replies: 47
    Last Post: 03-31-2008, 06:22 AM
  3. memory leak checker program? for windows
    By rahulsk1947 in forum C Programming
    Replies: 1
    Last Post: 11-12-2007, 07:20 AM
  4. Inheritance and Dynamic Memory Program Problem
    By goron350 in forum C++ Programming
    Replies: 1
    Last Post: 07-02-2005, 02:38 PM
  5. Pointer's
    By xlordt in forum C Programming
    Replies: 13
    Last Post: 10-14-2003, 02:15 PM