diff options
author | Sebastian Wilhelmi <wilhelmi@ira.uka.de> | 1999-06-17 15:39:31 +0000 |
---|---|---|
committer | Sebastian Wilhelmi <wilhelmi@src.gnome.org> | 1999-06-17 15:39:31 +0000 |
commit | 90f6cc9bf2453e5da385b2d547704091dd8afbb8 (patch) | |
tree | 185b523416ce210680c328dc2dbeae90d349d731 /acconfig.h | |
parent | ed49525102be3f9db6300dae0d369a92c19b2e66 (diff) |
Completed the thread support in GLib. Thread creation, prioritizing
1999-06-17 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in, acglib.m4, acconfig.h, glib.h, gthread.c:
Completed the thread support in GLib. Thread creation,
prioritizing threads, yielding, joining threads as well as
reader/writer locks and recursive mutexes are now in place. Please
test heavily on your platform. It is so far tested on
Linux/i386/pthreads, Solaris/Sparc/pthreads and
Solaris/Sparc/solaristhreads.
* gtimer.c, glib.h: Implement g_usleep (gulong microseconds) for
thread safe sleeping. (sleep() is not MT-safe at all!)
* gutils.c: Avoid compiler warning.
* tests/Makefile.am, tests/thread-test.c: New program to test some
aspects of the thread implementation.
* gthread.c, Makefile.am: Renamed from gmutex.c to reflect the
change of content.
* configure.in: Purged all appearances of nspr.
* gthread/gthread-posix.c, gthread-solaris.c: Added the native
implementations for the GLib's extended thread support.
* gthread/gthread-nspr.c: Removed for good. NSPR is nothing we
would want to build upon.
* gthread/gthread.c: Renamed to gthread-impl.c to avoid
confusion with ../gthread.c (Formerly known as the file called
gmutex.c)
* gthread/testgthread.c: Removed. The new and much extended
tests are in ../tests/thread-test.c.
* gthread/Makefile.am: Changed to reflect the changes above.
Diffstat (limited to 'acconfig.h')
-rw-r--r-- | acconfig.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/acconfig.h b/acconfig.h index aaa035c3e..1c630e113 100644 --- a/acconfig.h +++ b/acconfig.h @@ -43,7 +43,9 @@ #undef G_THREADS_ENABLED #undef GLIB_SIZEOF_GMUTEX +#undef GLIB_SIZEOF_PTHREAD_T #undef GLIB_BYTE_CONTENTS_GMUTEX +#undef GLIB_BYTE_CONTENTS_GRECMUTEX #undef HAVE_BROKEN_WCTYPE #undef HAVE_DOPRNT @@ -53,6 +55,7 @@ #undef HAVE_LIMITS_H #undef HAVE_LONG_DOUBLE #undef HAVE_POLL +#undef HAVE_PTHREAD_ATTR_SETSTACKSIZE #undef HAVE_PWD_H #undef HAVE_PW_GECOS #undef HAVE_SYS_PARAM_H @@ -94,6 +97,9 @@ #undef NATIVE_WIN32 #undef G_THREAD_SOURCE +#undef POSIX_MIN_PRIORITY +#undef POSIX_MAX_PRIORITY +#undef POSIX_YIELD_FUNC #undef GLIB_NATIVE_BEOS |