intrflush Subroutine
Purpose
Enables or disables flush on interrupt.
Library
Curses Library (libcurses.a)
Syntax
#include <curses.h>
int intrflush(WINDOW * win,
bool bf);
bool bf);
Description
The intrflush subroutine specifies whether pressing an interrupt key (interrupt, suspend, or quit) will flush the input buffer associated with the current screen. If the value of bf is TRUE, then flushing of the output buffer associated with the current screen will occur when an interrupt key (interrupt, suspend, or quit) is pressed. If the value of bf is FALSE then no flushing of the buffer will occur when an interrupt key is pressed. The default for the option is inherited from the display driver settings. The win argument is ignored.
Parameters
Item | Description |
---|---|
bf | |
*win | Specifies the window for which to enable or disable queue flushing. |
Return Values
Upon successful completion, the intrflush subroutine returns OK. Otherwise, it returns ERR.
Examples
- To enable queue flushing in the user-defined window my_window,
enter:
intrflush(my_window, TRUE);
- To disable queue flushing in the user-defined window my_window,
enter:
intrflush(my_window, FALSE);