Sponsored Content
Top Forums Programming what would happen if a process wrote to its own stdin? Post 302302834 by c_d on Wednesday 1st of April 2009 06:56:21 AM
Old 04-01-2009
Quote:
Originally Posted by pshaikh
Hi,

I know Smilie May be I was not clear enough of what I am trying to do,

The program is as follows -

Code:
int main()
{
   if( write(STDIN_FILENO,"arghh!",6) == -1 )
  {
      fprintf(stderr,"Error in write\n");
      exit(2);
  }
  return 0;
}

I am doing following on shell command line -

$>file.txt (this create an empty file.txt)
$./a.out < file.txt (redirect standard input of a.out to file.txt, a.out is supposed to WRITE to(not READ from) file.txt(that is what it is programmed to do).

($ is not part of command but of shell command prompt)

STDIN_FILENO's file status flag is 2 (O_RDWR - both read write allowed).

I expected that a.out writes to standard input; which is file.txt. But file.txt remains empty.

I am trying to understand 'why'

Anybody. Please illuminate
Code:
[c_d@localhost cfiles]$ cat temp.c
#include<unistd.h>
#include<fcntl.h>

int main()
{

    if((write(STDIN_FILENO,"arrgh!",6))==-1)
    {
        perror("error writing to file");
    }    

}


[c_d@localhost cfiles]$ touch file     #create empty file
[c_d@localhost cfiles]$ cat file        #you can see, that the file is empty
[c_d@localhost cfiles]$ gcc temp.c  #compile temp.c
[c_d@localhost cfiles]$ ./a.out 0>file #redirection notice no "arrgh!" prints
[c_d@localhost cfiles]$ cat file         #because "arrgh!" is redirected to file
arrgh![c_d@localhost cfiles]$ rm file ; touch file  
[c_d@localhost cfiles]$ ./a.out <file      # :(
error writing to file: Bad file descriptor
[c_d@localhost cfiles]$

Smilie i dunno...why that happens. probably because file connects to stdin of a.out first, so when write command executes, stdin is connected to file so it is not able to write into stdin, hence it returns -1.

Last edited by c_d; 04-01-2009 at 08:29 AM..
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

what happen when changing Hostname?

I 'm using RH 7.2 Genome in the Network Configuration I change therer are two places one for static hostname for my machine and in DNS hostname I don't know what happen when restarting my PC when connecting using dialer I can't browse the Internet also I can't use sendmail .......Server timeout... (2 Replies)
Discussion started by: atiato
2 Replies

2. Programming

Any one can tell me how this happen?

The #1 Online Store for Louis Vuitton Replicas is: http://www.opichina.com.cn. We offer Louis Vuitton Replicas and more! Whatever you call it: LV Bags, LV Replicas, Louis Vuitton Fake, Louis Vuitton Knockoffs, Louis Vuitton Bag, Louis Vuitton Purse, Louis Vuitton Wallet, Louis Vuitton Shoes,... (10 Replies)
Discussion started by: jiangyanna
10 Replies

3. UNIX for Dummies Questions & Answers

What would happen if. . .

Hi, Could someone please tell me what would happen if the following were entered into the command line: rm -i /books/*.* rm /books/* Many thanks! (3 Replies)
Discussion started by: crispy
3 Replies

4. UNIX for Advanced & Expert Users

Unix ID deleted - What happen to process

I have an unix id (AIX system) which is used to run a couple of processes. They also write some log files into a file system (that is not in the home directory of the user id, but in different location). One bad day, the id was deleted accidentally. But the home directory, files and everything... (1 Reply)
Discussion started by: cmgreat
1 Replies

5. UNIX for Dummies Questions & Answers

whats happen when we create new user

hi frndz I wanna knw exatly what happen when we create new user... which directories are created ?? which files are modified ?? thanx.... (2 Replies)
Discussion started by: luckypower
2 Replies

6. AIX

How does ITIL processing happen in AIX?

How does ITIL process is implemened in AIX? (6 Replies)
Discussion started by: AIXlearner
6 Replies

7. UNIX for Dummies Questions & Answers

What Does Happen During Boot Process? - BIOS and MBR

I'm talking about boot process in multi-boot Linux perceptive. Please tell me whether my explanation is right or wrong? If wrong, please explain. "The BIOS checks the system and loads this initial bootstrapping code into memory. This initial bootstrap code searches for an active partition... (0 Replies)
Discussion started by: f.ben.isaac
0 Replies

8. UNIX for Advanced & Expert Users

Who actually wrote Professional Linux Programming ?

Hello, Who actually wrote Professional Linux Programming of Wrox publication as there are two different sets of writers, one set consists of Jon Masters and Richard Blum and another set of writers is Neil Mathew with lots of other writers. Plz resolve it. I'm really confused. Regards.. (0 Replies)
Discussion started by: vectrum
0 Replies

9. Shell Programming and Scripting

Crontab - wrote Simple Script but i cant work out how to play it at a certain time.

Hi everyone. Silly might be silly be I'm still new to bash. I'm trying to make an Alarm Clock for in the morning using my laptop i have wrote this Simple Script but i cant work out how to play it at a certain time. #!/bin/bash cd /home/josh/Music/Bruno_Mars/Hooligans/ cvlc... (8 Replies)
Discussion started by: jtsmith90
8 Replies

10. What is on Your Mind?

Ah, the AMIGA, (another poem I wrote in 2005).

Well I wrote this in 2005 and uploaded to AMINET.as a commemoration of a machine that is still in use today. It is now 29 years since this machne came into being. Phenominal and it is still being supported- WOW! My A1200 is on 24/7 and I use it to test code developed on AMIGA emulators... ... (0 Replies)
Discussion started by: wisecracker
0 Replies
asadmin-reconfig(1AS)						   User Commands					     asadmin-reconfig(1AS)

NAME
asadmin-reconfig, reconfig - applies the changes you have made for a server instance SYNOPSIS
reconfig --user admin_user [--password admin_password] [--host localhost] [--port 4848] [--secure|-s] [--passwordfile filename] [--discard- manualchanges=false] [--keepmanualchanges=false] instance_name This command is deprecated. It allows you to apply changes you have made for a server instance. Use the reconfig command after you've used the set command to change server properties. Any changes you make to the configuration files of the server do not take affect until you apply the changes by running the reconfig command. When --discardmanualchanges is set to true, manual changes made to the server.xml file are discarded. When --keepmanualchanges is set to true, manual changes made to the server.xml file take affect. However if both options are false (both options are not specified), an error message is displayed if manual changes and/or changes have been applied using the Adminis- trator Interface. Use this command with discretion since there is no undo, and the changes applied are made directly to your con- fig/backup/server.xmlfile. OPTIONS
--user administrative user associated for the instance. --password administrative password corresponding to the administrative user. --host host name of the machine hosting the administrative instance. --port administrative port number associated with the administrative host. --passwordfile file containing passwords appropriate for the command (e.g., administrative instance). --secure if true, uses SSL/TLS to communicate with the administrative instance. --discardmanualchanges defaults to false. When set to true, discards the changes made manually to the server.xml file. --keepmanualchanges defaults to false. When set to true, allows the manual changes made to the server.xml file to take affect. OPERANDS
instance_name name of the instance.. Example 1: Using reconfig asadmin> reconfig --user admin --passwordfile passwords.txt --host localhost --port 4848 server1 Successfully reconfigured Example 2: Using reconfig with the --discardmanualchanges option asadmin> reconfig --user admin --passwordfile passwords.txt --host localhost --port 4848 --discardmanualchanges server1 Instance restart is required Successfully reconfigured Example 3: Using reconfig with the --keepmanualchanges option asadmin> reconfig --user admin --passwordfile passwords.txt --host localhost --port 4848 --keepmanualchanges server1 Instance restart is required Successfully reconfigured EXIT STATUS
0 command executed successfully 1 error in executing the command asadmin-get(1AS), asadmin-set(1AS), asadmin-list(1AS) J2EE 1.4 SDK March 2004 asadmin-reconfig(1AS)
All times are GMT -4. The time now is 11:51 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy