Add g_error functions.
authorTor Lillqvist <tml@iki.fi>
Thu, 13 Jul 2000 20:07:45 +0000 (20:07 +0000)
committerTor Lillqvist <tml@src.gnome.org>
Thu, 13 Jul 2000 20:07:45 +0000 (20:07 +0000)
2000-07-14  Tor Lillqvist  <tml@iki.fi>

* glib.def: Add g_error functions.

* makefile.mingw.in: Add gbacktrace.o.

* gbacktrace.c: No need to include <process.h>.

14 files changed:
ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gbacktrace.c
glib.def
glib/gbacktrace.c
glib/glib.def
glib/makefile.mingw.in
makefile.mingw.in

index 62077e1..f53856c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2000-07-14  Tor Lillqvist  <tml@iki.fi>
+
+       * glib.def: Add g_error functions.
+
+       * makefile.mingw.in: Add gbacktrace.o.
+
+       * gbacktrace.c: No need to include <process.h>.
+
 2000-07-12  Havoc Pennington  <hp@redhat.com>
 
        * glib.h: #include <gerror.h>
index 62077e1..f53856c 100644 (file)
@@ -1,3 +1,11 @@
+2000-07-14  Tor Lillqvist  <tml@iki.fi>
+
+       * glib.def: Add g_error functions.
+
+       * makefile.mingw.in: Add gbacktrace.o.
+
+       * gbacktrace.c: No need to include <process.h>.
+
 2000-07-12  Havoc Pennington  <hp@redhat.com>
 
        * glib.h: #include <gerror.h>
index 62077e1..f53856c 100644 (file)
@@ -1,3 +1,11 @@
+2000-07-14  Tor Lillqvist  <tml@iki.fi>
+
+       * glib.def: Add g_error functions.
+
+       * makefile.mingw.in: Add gbacktrace.o.
+
+       * gbacktrace.c: No need to include <process.h>.
+
 2000-07-12  Havoc Pennington  <hp@redhat.com>
 
        * glib.h: #include <gerror.h>
index 62077e1..f53856c 100644 (file)
@@ -1,3 +1,11 @@
+2000-07-14  Tor Lillqvist  <tml@iki.fi>
+
+       * glib.def: Add g_error functions.
+
+       * makefile.mingw.in: Add gbacktrace.o.
+
+       * gbacktrace.c: No need to include <process.h>.
+
 2000-07-12  Havoc Pennington  <hp@redhat.com>
 
        * glib.h: #include <gerror.h>
index 62077e1..f53856c 100644 (file)
@@ -1,3 +1,11 @@
+2000-07-14  Tor Lillqvist  <tml@iki.fi>
+
+       * glib.def: Add g_error functions.
+
+       * makefile.mingw.in: Add gbacktrace.o.
+
+       * gbacktrace.c: No need to include <process.h>.
+
 2000-07-12  Havoc Pennington  <hp@redhat.com>
 
        * glib.h: #include <gerror.h>
index 62077e1..f53856c 100644 (file)
@@ -1,3 +1,11 @@
+2000-07-14  Tor Lillqvist  <tml@iki.fi>
+
+       * glib.def: Add g_error functions.
+
+       * makefile.mingw.in: Add gbacktrace.o.
+
+       * gbacktrace.c: No need to include <process.h>.
+
 2000-07-12  Havoc Pennington  <hp@redhat.com>
 
        * glib.h: #include <gerror.h>
index 62077e1..f53856c 100644 (file)
@@ -1,3 +1,11 @@
+2000-07-14  Tor Lillqvist  <tml@iki.fi>
+
+       * glib.def: Add g_error functions.
+
+       * makefile.mingw.in: Add gbacktrace.o.
+
+       * gbacktrace.c: No need to include <process.h>.
+
 2000-07-12  Havoc Pennington  <hp@redhat.com>
 
        * glib.h: #include <gerror.h>
index 62077e1..f53856c 100644 (file)
@@ -1,3 +1,11 @@
+2000-07-14  Tor Lillqvist  <tml@iki.fi>
+
+       * glib.def: Add g_error functions.
+
+       * makefile.mingw.in: Add gbacktrace.o.
+
+       * gbacktrace.c: No need to include <process.h>.
+
 2000-07-12  Havoc Pennington  <hp@redhat.com>
 
        * glib.h: #include <gerror.h>
index 7fa7768..f838978 100644 (file)
@@ -62,7 +62,6 @@
 #ifdef G_OS_WIN32
 #  define STRICT               /* Strict typing, please */
 #  include <windows.h>
-#  include <process.h>         /* For _getpid() */
 #endif
 
 #ifndef NO_FD_SET
index ab7e45a..ac57b36 100644 (file)
--- a/glib.def
+++ b/glib.def
@@ -28,6 +28,7 @@ EXPORTS
        g_cache_new
        g_cache_remove
        g_cache_value_foreach
+       g_clear_error
        g_completion_add_items
        g_completion_clear_items
        g_completion_complete
@@ -90,6 +91,11 @@ EXPORTS
        g_direct_equal
        g_direct_hash
        g_dirname
+       g_error_copy
+       g_error_free
+       g_error_matches
+       g_error_new
+       g_error_new_literal
        g_filename_from_utf8
        g_filename_to_utf8
        g_free
@@ -324,6 +330,7 @@ EXPORTS
        g_scanner_thaw_symbol_table
        g_scanner_unexp_token
        g_scanner_warn
+       g_set_error
        g_set_error_handler
        g_set_message_handler
        g_set_prgname
index 7fa7768..f838978 100644 (file)
@@ -62,7 +62,6 @@
 #ifdef G_OS_WIN32
 #  define STRICT               /* Strict typing, please */
 #  include <windows.h>
-#  include <process.h>         /* For _getpid() */
 #endif
 
 #ifndef NO_FD_SET
index ab7e45a..ac57b36 100644 (file)
@@ -28,6 +28,7 @@ EXPORTS
        g_cache_new
        g_cache_remove
        g_cache_value_foreach
+       g_clear_error
        g_completion_add_items
        g_completion_clear_items
        g_completion_complete
@@ -90,6 +91,11 @@ EXPORTS
        g_direct_equal
        g_direct_hash
        g_dirname
+       g_error_copy
+       g_error_free
+       g_error_matches
+       g_error_new
+       g_error_new_literal
        g_filename_from_utf8
        g_filename_to_utf8
        g_free
@@ -324,6 +330,7 @@ EXPORTS
        g_scanner_thaw_symbol_table
        g_scanner_unexp_token
        g_scanner_warn
+       g_set_error
        g_set_error_handler
        g_set_message_handler
        g_set_prgname
index 739c025..2a4ab78 100644 (file)
@@ -41,6 +41,7 @@ install : all
 glib_OBJECTS = \
        garray.o \
        gasyncqueue.o \
+       gbacktrace.o \
        gcache.o \
        gcompletion.o \
        gdataset.o \
index 739c025..2a4ab78 100644 (file)
@@ -41,6 +41,7 @@ install : all
 glib_OBJECTS = \
        garray.o \
        gasyncqueue.o \
+       gbacktrace.o \
        gcache.o \
        gcompletion.o \
        gdataset.o \