diff options
author | Nalin Dahyabhai <nalin@src.gnome.org> | 2002-09-05 05:42:13 +0000 |
---|---|---|
committer | Nalin Dahyabhai <nalin@src.gnome.org> | 2002-09-05 05:42:13 +0000 |
commit | 5d694faf7d2c3fb490ffc135f3ffc4ab3130b19c (patch) | |
tree | 9c1441cea134b9d2611ab3e5b9e049ccbb792b47 /doc/reference/tmpl/reaper.sgml | |
parent | 590ba538b7fa77509035453bc8a0e4d6f276bfc1 (diff) |
2002-09-05 nalin first pass at writing documentation fix
2002-09-05 nalin
* docs/reference: first pass at writing documentation
* src/termcap.c: fix how'd-that-ever-work in vte_termcap_strip(), patch
from Brian Cameron. Take \\e as an alias for \\E, which is already
an alias for Escape.
* src/vte.c(vte_terminal_get_cursor): Return an absolute cursor position
instead of a relative position.
Diffstat (limited to 'doc/reference/tmpl/reaper.sgml')
-rw-r--r-- | doc/reference/tmpl/reaper.sgml | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/doc/reference/tmpl/reaper.sgml b/doc/reference/tmpl/reaper.sgml new file mode 100644 index 0000000..d950326 --- /dev/null +++ b/doc/reference/tmpl/reaper.sgml @@ -0,0 +1,43 @@ +<!-- ##### SECTION Title ##### --> +VteReaper + +<!-- ##### SECTION Short_Description ##### --> +A singleton object which catches %SIGCHLD signals and converts them into +GObject-style "child-exited" signals. + +<!-- ##### SECTION Long_Description ##### --> +<para> +Because an application may need to be notified when child processes +exit, and because there is only one %SIGCHLD handler, the #VteTerminal +widget relies on a #VteReaper to watch for %SIGCHLD notifications and +retrieve the exit status of child processes which have exited. +</para> + +<!-- ##### SECTION See_Also ##### --> +<para> + +</para> + +<!-- ##### STRUCT VteReaper ##### --> +<para> + +</para> + + +<!-- ##### FUNCTION vte_reaper_get ##### --> +<para> + +</para> + +@Returns: + + +<!-- ##### SIGNAL VteReaper::child-exited ##### --> +<para> + +</para> + +@vtereaper: the object which received the signal. +@arg1: the process ID of the exited child. +@arg2: the status of the exited child, as returned by #waitpid. + |