From: Sebastian Wilhelmi Date: Wed, 3 Jan 2001 17:00:43 +0000 (+0000) Subject: Made g_thread_min_stack_size static. X-Git-Tag: GLIB_1_2_9PRE1~53 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b1d840c20a27dd756bd7bd5877631cb8acae1c62;p=platform%2Fupstream%2Fglib.git Made g_thread_min_stack_size static. 2001-01-03 Sebastian Wilhelmi * gthread-solaris.c, gthread-posix.c: Made g_thread_min_stack_size static. 2CVS: ---------------------------------------------------------------------- --- diff --git a/gthread/ChangeLog b/gthread/ChangeLog index 0d33fae..8288d80 100644 --- a/gthread/ChangeLog +++ b/gthread/ChangeLog @@ -1,3 +1,8 @@ +2001-01-03 Sebastian Wilhelmi + + * gthread-solaris.c, gthread-posix.c: Made g_thread_min_stack_size + static. + 2000-11-28 Sebastian Wilhelmi * gthread-impl.c: Revamped errorcheck mutexes and added errorcheck diff --git a/gthread/gthread-posix.c b/gthread/gthread-posix.c index 95bad49..fd3d758 100644 --- a/gthread/gthread-posix.c +++ b/gthread/gthread-posix.c @@ -115,7 +115,7 @@ static gboolean posix_check_cmd_prio_warned = FALSE; # define PRIORITY_URGENT_VALUE POSIX_MAX_PRIORITY #endif /* POSIX_MIN_PRIORITY && POSIX_MAX_PRIORITY */ -gulong g_thread_min_stack_size = 0; +static gulong g_thread_min_stack_size = 0; #define G_MUTEX_SIZE (sizeof (pthread_mutex_t)) diff --git a/gthread/gthread-solaris.c b/gthread/gthread-solaris.c index cee0643..7eb7b8a 100644 --- a/gthread/gthread-solaris.c +++ b/gthread/gthread-solaris.c @@ -49,7 +49,7 @@ if( error ) { solaris_print_error( what, error ); } \ }G_STMT_END -gulong g_thread_min_stack_size = 0; +static gulong g_thread_min_stack_size = 0; #define G_MUTEX_SIZE (sizeof (mutex_t))