2020-01-02 02:23:11 +00:00
|
|
|
% notcurses_stop(3)
|
|
|
|
% nick black <nickblack@linux.com>
|
2020-11-09 18:45:59 +00:00
|
|
|
% v2.0.3
|
2020-01-02 02:23:11 +00:00
|
|
|
|
|
|
|
# NAME
|
|
|
|
|
2020-01-04 07:37:55 +00:00
|
|
|
notcurses_stop - free up resources and restore initial terminal state
|
2020-01-02 02:23:11 +00:00
|
|
|
|
|
|
|
# SYNOPSIS
|
|
|
|
|
2020-04-19 22:46:32 +00:00
|
|
|
**#include <notcurses/notcurses.h>**
|
2020-01-02 02:23:11 +00:00
|
|
|
|
2020-11-06 21:49:35 +00:00
|
|
|
**int notcurses_stop(struct notcurses* ***nc***);**
|
2020-01-02 02:23:11 +00:00
|
|
|
|
|
|
|
# DESCRIPTION
|
|
|
|
|
|
|
|
**notcurses_stop** frees up any resources associated with the
|
|
|
|
**struct notcurses** provided as **nc**, and attempts to restore the terminal to its
|
2020-08-24 19:08:33 +00:00
|
|
|
state prior to calling **notcurses_init(3)**. It also unregisters any signal
|
|
|
|
handlers put into place by **notcurses_init(3)**. **nc** must not be used
|
|
|
|
following the call, and all references to ncplanes, cells, etc. are
|
|
|
|
invalidated.
|
|
|
|
|
|
|
|
Once the terminal has been reset, a summary of runtime and performance is
|
|
|
|
printed, unless **NCOPTION_SUPPRESS_BANNERS** was provided to
|
|
|
|
**notcurses_init(3)**.
|
|
|
|
|
|
|
|
The first step taken by **notcurses_stop** is a call to the internal function
|
|
|
|
**notcurses_stop_minimal**. This is the same function called by the fatal
|
|
|
|
signal handlers installed in the absence of **NCOPTION_NO_QUIT_SIGHANDLERS**.
|
|
|
|
This function:
|
|
|
|
|
|
|
|
* Disables the Notcurses signal handlers
|
|
|
|
* Emits the **op** terminfo capability, if supported
|
|
|
|
* Emits the **sgr0** terminfo capability, if supported
|
|
|
|
* Emits the **oc** terminfo capability, if supported
|
|
|
|
* Emits the **rmcup** terminfo capability, if supported (and if
|
|
|
|
**NCOPTION_NO_ALTERNATE_SCREEN** was not provided).
|
|
|
|
* Emits the **cnorm** terminfo capability, if supported
|
|
|
|
|
|
|
|
Respectively, these restore the default colorpair to its original value
|
|
|
|
(**op**), turn off all text attributes (**sgr0**), restore the default
|
|
|
|
palette (**oc**), exit the alternate screen (**rmcup**), and restore the
|
|
|
|
cursor to its default appearance (**cnorm**).
|
|
|
|
|
|
|
|
It is legal to pass **NULL** to **notcurses_stop**. This is a no-op.
|
2020-01-02 02:23:11 +00:00
|
|
|
|
|
|
|
# NOTES
|
|
|
|
|
|
|
|
Behavior is undefined if other threads are working with **nc** when or after
|
|
|
|
this function is called. It is unlikely to be good.
|
|
|
|
|
|
|
|
# RETURN VALUES
|
|
|
|
|
|
|
|
On success, 0 is returned. Otherwise, a negative value is returned.
|
|
|
|
|
|
|
|
# SEE ALSO
|
|
|
|
|
2020-08-24 19:08:33 +00:00
|
|
|
**notcurses(3)**,
|
|
|
|
**notcurses_init(3)**,
|
|
|
|
**terminfo(5)**
|