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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T08:56:33+00:00 2026-05-14T08:56:33+00:00

I would like to stuff an ‘A’ character back into stdin using ungetc on

  • 0

I would like to stuff an ‘A’ character back into stdin using ungetc on receipt of SIGUSR1. Imagine that I have a good reason for doing this.

When calling foo(), the blocking read in stdin is not interrupted by the ungetc call on receipt of the signal. While I didn’t expect this to work as is, I wonder if there is a way to achieve this – does anyone have suggestions?

void handler (int sig)
{
  ungetc ('A', stdin);
}

void foo ()
{
  signal (SIGUSR1, handler);

  while ((key = fgetc (stdin)) != EOF)
  {
    ...
  }
}
  • 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-14T08:56:34+00:00Added an answer on May 14, 2026 at 8:56 am

    Rather than try to get ungetc() to unblock a blocking fgetc() call via a signal, perhaps you could try not having fgetc() block to begin with and wait for activity on stdin using select().


    By default, the line discipline for a terminal device may work in canonical mode. In this mode, the terminal driver doesn’t present the buffer to userspace until the newline is seen (Enter key is pressed).

    To accomplish what you want, you can set the terminal into raw (non-canonical) mode by using tcsetattr() to manipulate the termios structure. This should case the blocking call to fgetc() to immediately return the character inserted with ungetc().

    
    void handler(int sig) {
       /* I know I shouldn't do this in a signal handler,
        * but this is modeled after the OP's code.
        */
       ungetc('A', stdin);
    }
    
    void wait_for_stdin() {
       fd_set fdset;
       FD_ZERO(&fdset);
       FD_SET(fileno(stdin),&fdset);
       select(1, &fdset, NULL, NULL, NULL);
    }
    
    void foo () {
       int key;
       struct termios terminal_settings;
    
       signal(SIGUSR1, handler);
    
       /* set the terminal to raw mode */
       tcgetattr(fileno(stdin), &terminal_settings);
       terminal_settings.c_lflag &= ~(ECHO|ICANON);
       terminal_settings.c_cc[VTIME] = 0;
       terminal_settings.c_cc[VMIN] = 0;
       tcsetattr(fileno(stdin), TCSANOW, &terminal_settings);
    
       for (;;) {
          wait_for_stdin();
          key = fgetc(stdin);
          /* terminate loop on Ctrl-D */
          if (key == 0x04) {
             break;
          }      
          if (key != EOF) {
             printf("%c\n", key);
          }
       }
    }
    
    

    NOTE: This code omits error checking for simplicity.

    Clearing the ECHO and ICANON flags respectively disables echoing of characters as they are typed and causes read requests to be satisfied directly from the input queue. Setting the values of VTIME and VMIN to zero in the c_cc array causes the read request (fgetc()) to return immediately rather than block; effectively polling stdin. This causes key to get set to EOF so another method for terminating the loop is necessary. Unnecessary polling of stdin is reduced by waiting for activity on stdin using select().

    Executing the program, sending a SIGUSR1 signal, and typing
    t e s t results in the following output1:

    A
    t
    e
    s
    t
    

    1) tested on Linux

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

Sidebar

Ask A Question

Stats

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

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

    • 7 Answers
  • Editorial Team

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

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer I'm not entirely sure what your question is, but yes,… May 14, 2026 at 9:58 pm
  • Editorial Team
    Editorial Team added an answer It simply means the JCE meets FIPS requirements. The main… May 14, 2026 at 9:58 pm
  • Editorial Team
    Editorial Team added an answer Webcam and Microphone support is not a feature of the… May 14, 2026 at 9:58 pm

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.