Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7165909
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T14:19:40+00:00 2026-05-28T14:19:40+00:00

I have a server application that forks several child processes. When showing the processes

  • 0

I have a server application that forks several child processes. When showing the processes with ps, top or prstat they display exactly like the parent process. I can find out which is parent and child by their pid and ppid but it gets quickly difficult. I would like to change slightly the name of the child processes so that I can look quickly which does what.

I tried several tricks that all work flawlesly on Linux, but they do not on Solaris. Does anyone know how it is possible to do that and preferably in plain C.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T14:19:40+00:00Added an answer on May 28, 2026 at 2:19 pm

    One of the ways would be to create a real executable program for a child process and call one of the exec methods from the fork.

    This way the forked process will be “replaced” with the new executable file.

    Something along these lines:

      pid_t child_pid = fork( );
    
      switch ( child_pid )
      {
      case -1:
        die( );
        return;
    
      case 0:
        // setup argv ...
        static const char* argv[] =
        {
          "prog_name",
          NULL
        };
    
        execv( *argv, (char**) argv );
        // No code should be executed beyond this point
    
        fprintf(
          stderr,
          "%s fork: execv failed: %d (%s)\n",
          argv[ 0 ],
          errno,
          strerror( errno )
        );
    
        die( );
        return;
      default:
        break;
     }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a server application that receives information over a network and processes it.
I have a client server based windows forms application that needs an administrator only
I have a server application that uses a lot of threads. Without wanting to
We have a server application that we want to restrict non-users from triggerring it
I have a server application that consists of multiple OSGi bundles, some mine, some
I have a server application that needs to find and exchange small amounts of
I have a server application that writes to a popen(myCommand, w) file descriptor in
I have a server application that, in rare occasions, can allocate large chunks of
I have a server application that binds to a port and listens on it.
I have a client/server application that communicates with .Net remoting. I need my clients

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.