libgimp/gimpsignal.[ch] don't panic, this is not another signal handling

2000-05-01  Michael Natterer  <mitch@gimp.org>

	* libgimp/gimpsignal.[ch]
	* libgimp/gimpui.c: don't panic, this is not another signal handling
	change but only a namespace cleanup to make the html documentation
	better. Also added documentation for gimp_ui_init().

2000-05-01  Michael Natterer  <mitch@gimp.org>

	* libgimp/libgimp-decl.txt
	* libgimp/libgimp-sections.txt
	* libgimp/tmpl/gimp.sgml
	* libgimp/tmpl/gimpsignal.sgml
	* libgimp/tmpl/gimpui.sgml
	* libgimp/tmpl/libgimp-unused.sgml: updated.
This commit is contained in:
Michael Natterer
2000-05-01 16:53:14 +00:00
committed by Michael Natterer
parent 1c1c182074
commit 6ba24da2a8
13 changed files with 1278 additions and 1209 deletions

File diff suppressed because it is too large Load Diff

View File

@ -37,6 +37,7 @@ gimp_gamma
gimp_install_cmap
gimp_use_xshm
gimp_color_cube
gimp_min_colors
gimp_request_wakeups
gimp_image_new
gimp_image_duplicate
@ -263,9 +264,10 @@ gp_request_wakeups_write
<SECTION>
<FILE>gimpsignal</FILE>
gimp_signal_syscallrestart
GimpRetSigType
SA_RESTART
GimpSignalHandlerFunc
gimp_signal_private
gimp_signal_syscallrestart
</SECTION>
<SECTION>

View File

@ -361,6 +361,14 @@ gimp
@Returns:
<!-- ##### FUNCTION gimp_min_colors ##### -->
<para>
</para>
@Returns:
<!-- ##### FUNCTION gimp_request_wakeups ##### -->
<para>

View File

@ -11,24 +11,26 @@ Portable signal handling.
<!-- ##### SECTION See_Also ##### -->
<para>
signal(2), signal(5 or 7), sigaction(2).
</para>
<!-- ##### MACRO gimp_signal_syscallrestart ##### -->
<!-- ##### MACRO SA_RESTART ##### -->
<para>
This is just an alias for systems which do not define SA_RESTART.
</para>
@x:
@y:
<!-- ##### USER_FUNCTION GimpRetSigType ##### -->
<!-- ##### USER_FUNCTION GimpSignalHandlerFunc ##### -->
<para>
A prototype for signal handler functions. Note that each function which
takes or returns a variable of this type also accepts or may return
special values defined by your system's signal.h header file (like
@SIG_DFL or @SIG_IGN).
</para>
@Param1:
@signum: The number of the signal. Useful if different signals are handled
by a single handler.
<!-- ##### FUNCTION gimp_signal_private ##### -->
@ -37,8 +39,19 @@ Portable signal handling.
</para>
@signum:
@gimp_sighandler:
@sa_flags:
@handler:
@flags:
@Returns:
<!-- ##### MACRO gimp_signal_syscallrestart ##### -->
<para>
Installs a signal handler in a way that system calls which were not finished
at the time of signal handler invocation will be silently restarted
by the system (without failing with an error of EINTR).
</para>
@signum: The number of the signal.
@handler: The signal handler.

View File

@ -11,7 +11,10 @@ Common user interface functions.
<!-- ##### SECTION See_Also ##### -->
<para>
gtk_init(), gdk_set_use_xshm(), gdk_rgb_set_min_colors(),
gdk_rgb_set_install(), gdk_rgb_get_visual(), gdk_rgb_get_cmap(),
gtk_widget_set_default_visual(), gtk_widget_set_default_colormap(),
gtk_preview_set_gamma().
</para>
<!-- ##### FUNCTION gimp_ui_init ##### -->

View File

@ -1,7 +0,0 @@
<!-- ##### USER_FUNCTION RetSigType ##### -->
<para>
</para>
@Param1: