From: Tor Lillqvist Date: Mon, 1 May 2000 21:13:02 +0000 (+0000) Subject: Add new functions. Add new object files. Add threadpool-test. No need to X-Git-Tag: GLIB_1_3_1~44 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c4f0c6fd9b673fe7c591f215aed0245335dee2d2;p=platform%2Fupstream%2Fglib.git Add new functions. Add new object files. Add threadpool-test. No need to 2000-05-02 Tor Lillqvist * glib.def: Add new functions. * makefile.{cygwin,msc}.in (glib_OBJECTS): Add new object files. * tests/makefile.{cygwin,msc}.in: Add threadpool-test. * gmodule-win32.c: No need to include --- diff --git a/ChangeLog b/ChangeLog index ab5293a..a453f7b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2000-05-02 Tor Lillqvist + + * glib.def: Add new functions. + + * makefile.{cygwin,msc}.in (glib_OBJECTS): Add new object files. + + * tests/makefile.{cygwin,msc}.in: Add threadpool-test. + 2000-04-28 Sebastian Wilhelmi * gasyncqueue.c: New File implementing an asynchronous queue to be diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index ab5293a..a453f7b 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,3 +1,11 @@ +2000-05-02 Tor Lillqvist + + * glib.def: Add new functions. + + * makefile.{cygwin,msc}.in (glib_OBJECTS): Add new object files. + + * tests/makefile.{cygwin,msc}.in: Add threadpool-test. + 2000-04-28 Sebastian Wilhelmi * gasyncqueue.c: New File implementing an asynchronous queue to be diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index ab5293a..a453f7b 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,11 @@ +2000-05-02 Tor Lillqvist + + * glib.def: Add new functions. + + * makefile.{cygwin,msc}.in (glib_OBJECTS): Add new object files. + + * tests/makefile.{cygwin,msc}.in: Add threadpool-test. + 2000-04-28 Sebastian Wilhelmi * gasyncqueue.c: New File implementing an asynchronous queue to be diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index ab5293a..a453f7b 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,3 +1,11 @@ +2000-05-02 Tor Lillqvist + + * glib.def: Add new functions. + + * makefile.{cygwin,msc}.in (glib_OBJECTS): Add new object files. + + * tests/makefile.{cygwin,msc}.in: Add threadpool-test. + 2000-04-28 Sebastian Wilhelmi * gasyncqueue.c: New File implementing an asynchronous queue to be diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index ab5293a..a453f7b 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,11 @@ +2000-05-02 Tor Lillqvist + + * glib.def: Add new functions. + + * makefile.{cygwin,msc}.in (glib_OBJECTS): Add new object files. + + * tests/makefile.{cygwin,msc}.in: Add threadpool-test. + 2000-04-28 Sebastian Wilhelmi * gasyncqueue.c: New File implementing an asynchronous queue to be diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index ab5293a..a453f7b 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,11 @@ +2000-05-02 Tor Lillqvist + + * glib.def: Add new functions. + + * makefile.{cygwin,msc}.in (glib_OBJECTS): Add new object files. + + * tests/makefile.{cygwin,msc}.in: Add threadpool-test. + 2000-04-28 Sebastian Wilhelmi * gasyncqueue.c: New File implementing an asynchronous queue to be diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index ab5293a..a453f7b 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,11 @@ +2000-05-02 Tor Lillqvist + + * glib.def: Add new functions. + + * makefile.{cygwin,msc}.in (glib_OBJECTS): Add new object files. + + * tests/makefile.{cygwin,msc}.in: Add threadpool-test. + 2000-04-28 Sebastian Wilhelmi * gasyncqueue.c: New File implementing an asynchronous queue to be diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index ab5293a..a453f7b 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,11 @@ +2000-05-02 Tor Lillqvist + + * glib.def: Add new functions. + + * makefile.{cygwin,msc}.in (glib_OBJECTS): Add new object files. + + * tests/makefile.{cygwin,msc}.in: Add threadpool-test. + 2000-04-28 Sebastian Wilhelmi * gasyncqueue.c: New File implementing an asynchronous queue to be diff --git a/glib.def b/glib.def index 9e0a010..20f83b7 100644 --- a/glib.def +++ b/glib.def @@ -419,6 +419,9 @@ EXPORTS g_thread_create g_thread_functions_for_glib_use g_thread_join + g_thread_pool_free + g_thread_pool_new + g_thread_pool_push g_thread_self g_thread_set_priority g_thread_use_default_impl diff --git a/glib/glib.def b/glib/glib.def index 9e0a010..20f83b7 100644 --- a/glib/glib.def +++ b/glib/glib.def @@ -419,6 +419,9 @@ EXPORTS g_thread_create g_thread_functions_for_glib_use g_thread_join + g_thread_pool_free + g_thread_pool_new + g_thread_pool_push g_thread_self g_thread_set_priority g_thread_use_default_impl diff --git a/glib/makefile.msc.in b/glib/makefile.msc.in index 99b45f3..7d9f501 100644 --- a/glib/makefile.msc.in +++ b/glib/makefile.msc.in @@ -56,13 +56,14 @@ install : all glib_OBJECTS = \ garray.obj \ + gasyncqueue.obj \ gcache.obj \ gcompletion.obj \ gdataset.obj \ gdate.obj \ gerror.obj \ - ghook.obj \ ghash.obj \ + ghook.obj \ giochannel.obj \ giowin32.obj \ glist.obj \ @@ -73,14 +74,15 @@ glib_OBJECTS = \ gprimes.obj \ gqueue.obj \ grand.obj \ + grel.obj \ + gscanner.obj \ gslist.obj \ + gstrfuncs.obj \ + gstring.obj \ gthread.obj \ + gthreadpool.obj \ gtimer.obj \ gtree.obj \ - grel.obj \ - gstring.obj \ - gstrfuncs.obj \ - gscanner.obj \ gutils.obj \ gwin32.obj diff --git a/gmodule/ChangeLog b/gmodule/ChangeLog index 4be7800..b477036 100644 --- a/gmodule/ChangeLog +++ b/gmodule/ChangeLog @@ -1,3 +1,7 @@ +2000-05-02 Tor Lillqvist + + * gmodule-win32.c: No need to include + 2000-03-23 Tor Lillqvist * gmodule-win32.c (_g_module_symbol): When looking for symbols in diff --git a/gmodule/gmodule-win32.c b/gmodule/gmodule-win32.c index 099f96a..76377bb 100644 --- a/gmodule/gmodule-win32.c +++ b/gmodule/gmodule-win32.c @@ -33,7 +33,6 @@ #include #include -#include #include static void diff --git a/makefile.cygwin.in b/makefile.cygwin.in index 968c388..d8bdf85 100644 --- a/makefile.cygwin.in +++ b/makefile.cygwin.in @@ -52,6 +52,7 @@ install : all glib_OBJECTS = \ garray.o \ + gasyncqueue.o \ gcache.o \ gcompletion.o \ gdataset.o \ @@ -71,6 +72,7 @@ glib_OBJECTS = \ grand.o \ gslist.o \ gthread.o \ + gthreadpool.o \ gtimer.o \ gtree.o \ grel.o \ diff --git a/makefile.msc.in b/makefile.msc.in index 99b45f3..7d9f501 100644 --- a/makefile.msc.in +++ b/makefile.msc.in @@ -56,13 +56,14 @@ install : all glib_OBJECTS = \ garray.obj \ + gasyncqueue.obj \ gcache.obj \ gcompletion.obj \ gdataset.obj \ gdate.obj \ gerror.obj \ - ghook.obj \ ghash.obj \ + ghook.obj \ giochannel.obj \ giowin32.obj \ glist.obj \ @@ -73,14 +74,15 @@ glib_OBJECTS = \ gprimes.obj \ gqueue.obj \ grand.obj \ + grel.obj \ + gscanner.obj \ gslist.obj \ + gstrfuncs.obj \ + gstring.obj \ gthread.obj \ + gthreadpool.obj \ gtimer.obj \ gtree.obj \ - grel.obj \ - gstring.obj \ - gstrfuncs.obj \ - gscanner.obj \ gutils.obj \ gwin32.obj diff --git a/tests/makefile.cygwin.in b/tests/makefile.cygwin.in index 641b7ce..90fc116 100644 --- a/tests/makefile.cygwin.in +++ b/tests/makefile.cygwin.in @@ -27,6 +27,7 @@ TESTS = \ strfunc-test.exe\ string-test.exe \ thread-test.exe \ + threadpool-test.exe\ tree-test.exe \ type-test.exe diff --git a/tests/makefile.msc.in b/tests/makefile.msc.in index 0cff24a..27a757c 100644 --- a/tests/makefile.msc.in +++ b/tests/makefile.msc.in @@ -29,6 +29,7 @@ TESTS = \ strfunc-test.exe\ string-test.exe \ thread-test.exe \ + threadpool-test.exe\ tree-test.exe \ type-test.exe