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 126375
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T05:18:28+00:00 2026-05-11T05:18:28+00:00

After opening a pipe to a process with popen , is there a way

  • 0

After opening a pipe to a process with popen, is there a way to kill the process that has been started? (Using pclose is not what I want because that will wait for the process to finish, but I need to kill it.)

  • 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. 2026-05-11T05:18:29+00:00Added an answer on May 11, 2026 at 5:18 am

    Don’t use popen(), write your own wrapper that does what you’d like.

    It’s fairly straightforward to fork(), and then replace stdin & stdout by using dup2(), and then calling exec() on your child.

    That way, your parent will have the exact child PID, and you can use kill() on that.

    Google search for ‘popen2() implementation’ for some sample code on how to implement what popen() is doing. It’s only a dozen or so lines long. Taken from dzone.com we can see an example that looks like this:

    #define READ 0 #define WRITE 1  pid_t popen2(const char *command, int *infp, int *outfp) {     int p_stdin[2], p_stdout[2];     pid_t pid;      if (pipe(p_stdin) != 0 || pipe(p_stdout) != 0)         return -1;      pid = fork();      if (pid < 0)         return pid;     else if (pid == 0)     {         close(p_stdin[WRITE]);         dup2(p_stdin[READ], READ);         close(p_stdout[READ]);         dup2(p_stdout[WRITE], WRITE);          execl('/bin/sh', 'sh', '-c', command, NULL);         perror('execl');         exit(1);     }      if (infp == NULL)         close(p_stdin[WRITE]);     else         *infp = p_stdin[WRITE];      if (outfp == NULL)         close(p_stdout[READ]);     else         *outfp = p_stdout[READ];      return pid; } 

    NB: Seems like popen2() is what you want, but my distribution doesn’t seem to come with this method.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

What is the efficient way of blocking on the socket for data after opening
After opening an XMPP Chat using the Smack library, is it necessary (or even
I'm using a Process to startup a word document and print it immediately after
After a rebase failed with a conflict, I could not continue the rebase using
Shell (explorer.exe www.google.com) is how I'm currently opening my products ad page after successful
After reading the Head First Design Patterns book and using a number of other
After being told by at least 10 people on SO that version control was
After lots of attempts and search I have never found a satisfactory way to
After hours of debugging, it appears to me that in FireFox, the innerHTML of
After opening an iframe, I sometimes need to close it. Thus far, I just

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.