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

  • Home
  • SEARCH
  • 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

Ask A Question

Stats

  • Questions 165k
  • Answers 165k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Based on the manual page: # Log in to the… May 12, 2026 at 12:29 pm
  • Editorial Team
    Editorial Team added an answer You'd want to look at the CHAR function: select char(64+6) May 12, 2026 at 12:29 pm
  • Editorial Team
    Editorial Team added an answer Have a look at Haxe ... you can compile Haxe… May 12, 2026 at 12:29 pm

Related Questions

I can't seem to find the option to make Delphi collapse a {$REGION}...{$ENDREGION}-block by
I'm working on an iPhone application which will use long-polling to send event notifications
I'm opening a new browser window from my site for some of the members.
Have a use case wherein need to maintain a connection open to a database

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.