Sponsored Content
Full Discussion: question about popen in C
Top Forums Programming question about popen in C Post 302504999 by omega666 on Wednesday 16th of March 2011 12:32:35 AM
Old 03-16-2011
the output is coming to stdout and i can see it, does this mean it works exactly like what popen does with a "w" argument?, i get no warnings or errors, and the code is pretty much what you saw before. except i changed it from structures to
arrays, because i know i will at most have 20 streams

so i have a int array, a int variable, and a file pointer array

int count = 0;
FILE *fp_array[25];
pid_t pid_array[25];

these are global

fp_array[count] = open_file;
pid_array[count++] = pid;

this happens when i use popen_new

and then when i pclose_new
i loop theough fp_array and see if the value matched the given fp, and if so i have access to its pid, so i can wait for the process to finish using a while loop and waitpid, also close it, and then return the status variable since thats what i code i posted up before did.

this is my pclose_new
also when getting the exit code using pclose_new for the popen_new using "r" i get the return to be 141 but when used by "w" i get 0.....
why am i getting 141


also can a pointer to a file ever be the value 0 and can a pid value ever be 0?

Last edited by omega666; 03-17-2011 at 05:14 PM..
 

10 More Discussions You Might Find Interesting

1. Programming

question about popen();

Hi The following is my program to test popen() routine. The purpose is to print some contents of the corrent directory. But in fact, the output is only one character 'a', which I believe is the first char of the file "a.out". So, can anybody tell me what is wrong about this program?... (2 Replies)
Discussion started by: dell9
2 Replies

2. Programming

query in popen

hai friends I have written a tcp chat server in c.. I have designed a cgi program in c to control it... When i try to start the server from the cgi program, it is not starting. Why is that ? I have even tried giving the root ownership for all the programs.. Still its not. I have used the... (1 Reply)
Discussion started by: collins
1 Replies

3. Programming

popen and tar, please HELP!

Hi there, I'm facing a problem running the tar command with the popen function. FILE* fp = popen("tar czf - textfile","r") // output this program should give the output to the stdout. I don't know if it is possible and which function like fprint() etc. should I use. I suppose that I... (4 Replies)
Discussion started by: stef83
4 Replies

4. Programming

using popen with background process

hi, how to work with a background process without a controlling terminal to make use of popen or system call ? when ever i use popen or system function call in foreground process, there is no problem with respect to that .. but when the same program is run as a background process without a... (7 Replies)
Discussion started by: matrixmadhan
7 Replies

5. Shell Programming and Scripting

Python: popen problems

Hello I'm writing a web server in python(obelisk-http.sourceforge.net) and I'm having a greeat problem with POST method it like that When someone make a POST request to the server it must open the executable(perl/python/.exe/elf) and send to the STANDART in (stdin) the request and get the... (2 Replies)
Discussion started by: sendai
2 Replies

6. Programming

prolems with pipes and popen in c

Hi! I'm trying to write a c program. The child process must transmit to the parent a file name and the parent must count the lines from the file and return te result to the child. Here is what i've done. It doesn't stop running, I guess. I'm sorry if it's an ugly code, i'm new at this stuff,... (2 Replies)
Discussion started by: alina89
2 Replies

7. UNIX for Advanced & Expert Users

popen and pclose solved

Hi I am trying to use popen function with wrtie option to give inputs to ftp command. #include "stdio.h" int main(int argv ,char *argc) { int size=0; char *buf; FILE *fp; fp = popen("ftp","w"); while(getline(&buf,&size,stdin) != -1) write(fp,buf);... (0 Replies)
Discussion started by: kumaran_5555
0 Replies

8. Programming

segmentation fault while using popen

hi, i am trying to use popen to run a grep process and check if the pattern exists in the file that i am searching in. i am getting segmentation fault when i try to execute the following code char *cd; char flag; char hdr_flpsp; char hdr_flpsp2; FILE *fp; printf ("program starts");... (1 Reply)
Discussion started by: sais
1 Replies

9. Programming

question about system and popen in C

in man system it talks about SIGCHLD will be blocked, and SIGINT and SIGQUIT will be ignored. Does this signal stuff also happen in popen command? (even though man popen says nothing about signals) also if I am not using wait(&status) and I am using waitpid(pid, NULL, 0) how would... (1 Reply)
Discussion started by: omega666
1 Replies

10. Programming

Popen problem

Hello all, I am reading a huge zip file in POPEN process and then writting that to a normal file which of 2GB. Now the process is failing when I looked for the cause someother process comming in after I read my file and it is deleting the zip. But in theory the popen command should read the... (5 Replies)
Discussion started by: arunkumar_mca
5 Replies
explain_waitpid(3)					     Library Functions Manual						explain_waitpid(3)

NAME
explain_waitpid - explain waitpid(2) errors SYNOPSIS
#include <libexplain/waitpid.h> const char *explain_waitpid(int pid, int *status, int options); const char *explain_errno_waitpid(int errnum, int pid, int *status, int options); void explain_message_waitpid(char *message, int message_size, int pid, int *status, int options); void explain_message_errno_waitpid(char *message, int message_size, int errnum, int pid, int *status, int options); DESCRIPTION
These functions may be used to obtain explanations for errors returned by the waitpid(2) system call. explain_waitpid const char *explain_waitpid(int pid, int *status, int options); The explain_waitpid function is used to obtain an explanation of an error returned by the waitpid(2) system call. The least the message will contain is the value of strerror(errno), but usually it will do much better, and indicate the underlying cause in more detail. The errno global variable will be used to obtain the error value to be decoded. This function is intended to be used in a fashion similar to the following example: if (waitpid(pid, status, options) < 0) { fprintf(stderr, "%s ", explain_waitpid(pid, status, options)); exit(EXIT_FAILURE); } pid The original pid, exactly as passed to the waitpid(2) system call. status The original status, exactly as passed to the waitpid(2) system call. options The original options, exactly as passed to the waitpid(2) system call. Returns: The message explaining the error. This message buffer is shared by all libexplain functions which do not supply a buffer in their argument list. This will be overwritten by the next call to any libexplain function which shares this buffer, including other threads. Note: This function is not thread safe, because it shares a return buffer across all threads, and many other functions in this library. explain_errno_waitpid const char *explain_errno_waitpid(int errnum, int pid, int *status, int options); The explain_errno_waitpid function is used to obtain an explanation of an error returned by the waitpid(2) system call. The least the mes- sage will contain is the value of strerror(errnum), but usually it will do much better, and indicate the underlying cause in more detail. This function is intended to be used in a fashion similar to the following example: if (waitpid(pid, status, options) < 0) { int err = errno; fprintf(stderr, "%s ", explain_errno_waitpid(err, pid, status, options)); exit(EXIT_FAILURE); } errnum The error value to be decoded, usually obtained from the errno global variable just before this function is called. This is neces- sary if you need to call any code between the system call to be explained and this function, because many libc functions will alter the value of errno. pid The original pid, exactly as passed to the waitpid(2) system call. status The original status, exactly as passed to the waitpid(2) system call. options The original options, exactly as passed to the waitpid(2) system call. Returns: The message explaining the error. This message buffer is shared by all libexplain functions which do not supply a buffer in their argument list. This will be overwritten by the next call to any libexplain function which shares this buffer, including other threads. Note: This function is not thread safe, because it shares a return buffer across all threads, and many other functions in this library. explain_message_waitpid void explain_message_waitpid(char *message, int message_size, int pid, int *status, int options); The explain_message_waitpid function may be used to obtain an explanation of an error returned by the waitpid(2) system call. The least the message will contain is the value of strerror(errno), but usually it will do much better, and indicate the underlying cause in more detail. The errno global variable will be used to obtain the error value to be decoded. This function is intended to be used in a fashion similar to the following example: if (waitpid(pid, status, options) < 0) { char message[3000]; explain_message_waitpid(message, sizeof(message), pid, status, options); fprintf(stderr, "%s ", message); exit(EXIT_FAILURE); } message The location in which to store the returned message. If a suitable message return buffer is supplied, this function is thread safe. message_size The size in bytes of the location in which to store the returned message. pid The original pid, exactly as passed to the waitpid(2) system call. status The original status, exactly as passed to the waitpid(2) system call. options The original options, exactly as passed to the waitpid(2) system call. explain_message_errno_waitpid void explain_message_errno_waitpid(char *message, int message_size, int errnum, int pid, int *status, int options); The explain_message_errno_waitpid function may be used to obtain an explanation of an error returned by the waitpid(2) system call. The least the message will contain is the value of strerror(errnum), but usually it will do much better, and indicate the underlying cause in more detail. This function is intended to be used in a fashion similar to the following example: if (waitpid(pid, status, options) < 0) { int err = errno; char message[3000]; explain_message_errno_waitpid(message, sizeof(message), err, pid, status, options); fprintf(stderr, "%s ", message); exit(EXIT_FAILURE); } message The location in which to store the returned message. If a suitable message return buffer is supplied, this function is thread safe. message_size The size in bytes of the location in which to store the returned message. errnum The error value to be decoded, usually obtained from the errno global variable just before this function is called. This is neces- sary if you need to call any code between the system call to be explained and this function, because many libc functions will alter the value of errno. pid The original pid, exactly as passed to the waitpid(2) system call. status The original status, exactly as passed to the waitpid(2) system call. options The original options, exactly as passed to the waitpid(2) system call. SEE ALSO
waitpid(2) wait for process to change state explain_waitpid_or_die(3) wait for process to change state and report errors COPYRIGHT
libexplain version 0.52 Copyright (C) 2008 Peter Miller explain_waitpid(3)
All times are GMT -4. The time now is 12:45 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy