bumped version number to 2.0pre3 (1.3.26), binary age 2, interface age 0.
2004-01-19 Sven Neumann <sven@gimp.org> * configure.in: bumped version number to 2.0pre3 (1.3.26), binary age 2, interface age 0. * libgimpbase/gimpsignal.h: removed unused definition of gimp_signal_syscallrestart().
This commit is contained in:

committed by
Sven Neumann

parent
1eee624d25
commit
c723e826e8
@ -1,3 +1,11 @@
|
|||||||
|
2004-01-19 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
|
* configure.in: bumped version number to 2.0pre3 (1.3.26),
|
||||||
|
binary age 2, interface age 0.
|
||||||
|
|
||||||
|
* libgimpbase/gimpsignal.h: removed unused definition of
|
||||||
|
gimp_signal_syscallrestart().
|
||||||
|
|
||||||
2004-01-19 Michael Natterer <mitch@gimp.org>
|
2004-01-19 Michael Natterer <mitch@gimp.org>
|
||||||
|
|
||||||
* app/tools/gimptexttool.c (gimp_text_tool_create_layer): if there
|
* app/tools/gimptexttool.c (gimp_text_tool_create_layer): if there
|
||||||
|
@ -47,12 +47,12 @@ AC_SUBST(WMF_REQUIRED_VERSION)
|
|||||||
#
|
#
|
||||||
GIMP_MAJOR_VERSION=1
|
GIMP_MAJOR_VERSION=1
|
||||||
GIMP_MINOR_VERSION=3
|
GIMP_MINOR_VERSION=3
|
||||||
GIMP_MICRO_VERSION=25
|
GIMP_MICRO_VERSION=26
|
||||||
GIMP_INTERFACE_AGE=0
|
GIMP_INTERFACE_AGE=0
|
||||||
GIMP_BINARY_AGE=1
|
GIMP_BINARY_AGE=2
|
||||||
|
|
||||||
#GIMP_VERSION=$GIMP_MAJOR_VERSION.$GIMP_MINOR_VERSION.$GIMP_MICRO_VERSION
|
#GIMP_VERSION=$GIMP_MAJOR_VERSION.$GIMP_MINOR_VERSION.$GIMP_MICRO_VERSION
|
||||||
GIMP_VERSION=2.0pre2
|
GIMP_VERSION=2.0pre3
|
||||||
|
|
||||||
AC_SUBST(GIMP_MAJOR_VERSION)
|
AC_SUBST(GIMP_MAJOR_VERSION)
|
||||||
AC_SUBST(GIMP_MINOR_VERSION)
|
AC_SUBST(GIMP_MINOR_VERSION)
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2004-01-19 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
|
* libgimpbase/libgimpbase-sections.txt
|
||||||
|
* libgimpbase/tmpl/gimpsignal.sgml: updated.
|
||||||
|
|
||||||
2004-01-19 Michael Natterer <mitch@gimp.org>
|
2004-01-19 Michael Natterer <mitch@gimp.org>
|
||||||
|
|
||||||
* app/app-sections.txt: updated.
|
* app/app-sections.txt: updated.
|
||||||
|
@ -100,10 +100,8 @@ gp_extension_ack_write
|
|||||||
|
|
||||||
<SECTION>
|
<SECTION>
|
||||||
<FILE>gimpsignal</FILE>
|
<FILE>gimpsignal</FILE>
|
||||||
SA_RESTART
|
|
||||||
GimpSignalHandlerFunc
|
GimpSignalHandlerFunc
|
||||||
gimp_signal_private
|
gimp_signal_private
|
||||||
gimp_signal_syscallrestart
|
|
||||||
</SECTION>
|
</SECTION>
|
||||||
|
|
||||||
<SECTION>
|
<SECTION>
|
||||||
|
@ -38,14 +38,3 @@ special values defined by your system's signal.h header file (like
|
|||||||
@Returns:
|
@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.
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -27,30 +27,16 @@ G_BEGIN_DECLS
|
|||||||
/* For information look into the C source or the html documentation */
|
/* For information look into the C source or the html documentation */
|
||||||
|
|
||||||
|
|
||||||
/* A gimp-level interface to a Posix.1-compliant signal package lives here
|
|
||||||
* For 1.2, this gimp-level interface mostly passes through to posix calls
|
|
||||||
* without modification. Certain calls manipulate struct sigaction in
|
|
||||||
* ways useful to Gimp.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* GimpSignalHandlerFunc is a reference to a (signal handler) function
|
/* GimpSignalHandlerFunc is a reference to a (signal handler) function
|
||||||
* that takes a signal ID and returns void.
|
* that takes a signal ID and returns void.
|
||||||
* signal(2) returns such references; so does gimp_signal_private.
|
* signal(2) returns such references; so does gimp_signal_private.
|
||||||
*/
|
*/
|
||||||
typedef void (* GimpSignalHandlerFunc) (gint signum);
|
typedef void (* GimpSignalHandlerFunc) (gint signum);
|
||||||
|
|
||||||
/* Internal implementation that can be DEFINEd into various flavors of
|
|
||||||
* signal(2) lookalikes.
|
|
||||||
*/
|
|
||||||
GimpSignalHandlerFunc gimp_signal_private (gint signum,
|
GimpSignalHandlerFunc gimp_signal_private (gint signum,
|
||||||
GimpSignalHandlerFunc handler,
|
GimpSignalHandlerFunc handler,
|
||||||
gint flags);
|
gint flags);
|
||||||
|
|
||||||
/* the gimp_signal_syscallrestart() lookalike looks like signal(2) but
|
|
||||||
* quietly requests the restarting of system calls. Addresses #2742
|
|
||||||
*/
|
|
||||||
#define gimp_signal_syscallrestart(signum,handler) gimp_signal_private ((signum), (handler), SA_RESTART)
|
|
||||||
|
|
||||||
|
|
||||||
G_END_DECLS
|
G_END_DECLS
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user