2008-07-01 22:57:50 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
1998-05-16 02:14:09 +00:00
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2000-07-26 11:33:08 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1998-05-16 02:14:09 +00:00
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2000-07-26 11:33:08 +00:00
|
|
|
* Lesser General Public License for more details.
|
1998-05-16 02:14:09 +00:00
|
|
|
*
|
2000-07-26 11:33:08 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-02-27 13:01:10 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
1998-05-16 02:14:09 +00:00
|
|
|
*/
|
1999-02-24 07:37:18 +00:00
|
|
|
|
|
|
|
/*
|
2000-07-26 11:33:08 +00:00
|
|
|
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
1999-02-24 07:37:18 +00:00
|
|
|
* file for a list of people on the GTK+ Team. See the ChangeLog
|
|
|
|
* files for a list of changes. These files are distributed with
|
|
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
|
|
|
*/
|
|
|
|
|
1998-05-16 02:14:09 +00:00
|
|
|
#include <stdio.h>
|
1998-08-29 22:27:47 +00:00
|
|
|
#include <unistd.h>
|
1998-05-16 02:14:09 +00:00
|
|
|
#include <gtk/gtk.h>
|
2008-06-22 14:28:52 +00:00
|
|
|
#include "config.h"
|
1998-05-16 02:14:09 +00:00
|
|
|
|
|
|
|
#ifdef USE_PTHREADS
|
1998-06-19 01:26:24 +00:00
|
|
|
#include <pthread.h>
|
|
|
|
|
1998-05-16 02:14:09 +00:00
|
|
|
static int nthreads = 0;
|
|
|
|
static pthread_mutex_t nthreads_mutex = PTHREAD_MUTEX_INITIALIZER;
|
|
|
|
|
|
|
|
void
|
|
|
|
close_cb (GtkWidget *w, gint *flag)
|
|
|
|
{
|
|
|
|
*flag = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
delete_cb (GtkWidget *w, GdkEvent *event, gint *flag)
|
|
|
|
{
|
|
|
|
*flag = 1;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
|
|
|
counter (void *data)
|
|
|
|
{
|
|
|
|
gchar *name = data;
|
|
|
|
gint flag = 0;
|
|
|
|
gint counter = 0;
|
|
|
|
gchar buffer[32];
|
|
|
|
|
|
|
|
GtkWidget *window;
|
|
|
|
GtkWidget *vbox;
|
|
|
|
GtkWidget *label;
|
|
|
|
GtkWidget *button;
|
|
|
|
|
1998-12-16 20:09:30 +00:00
|
|
|
gdk_threads_enter();
|
1998-05-16 02:14:09 +00:00
|
|
|
|
|
|
|
window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
|
|
|
|
gtk_window_set_title (GTK_WINDOW (window), name);
|
2010-09-08 16:39:36 +00:00
|
|
|
gtk_widget_set_size_request (window, 100, 50);
|
1998-05-16 02:14:09 +00:00
|
|
|
|
2010-10-30 03:00:32 +00:00
|
|
|
vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, FALSE, 0);
|
1998-05-16 02:14:09 +00:00
|
|
|
|
2008-06-20 19:26:50 +00:00
|
|
|
g_signal_connect (window, "delete-event",
|
|
|
|
G_CALLBACK (delete_cb), &flag);
|
1998-05-16 02:14:09 +00:00
|
|
|
|
|
|
|
gtk_container_add (GTK_CONTAINER (window), vbox);
|
|
|
|
|
|
|
|
label = gtk_label_new ("0");
|
|
|
|
gtk_box_pack_start (GTK_BOX (vbox), label, TRUE, FALSE, 0);
|
|
|
|
|
|
|
|
button = gtk_button_new_with_label ("Close");
|
2008-06-20 19:26:50 +00:00
|
|
|
g_signal_connect (button, "clicked",
|
|
|
|
G_CALLBACK (close_cb), &flag);
|
1998-05-16 02:14:09 +00:00
|
|
|
gtk_box_pack_start (GTK_BOX (vbox), button, FALSE, FALSE, 0);
|
|
|
|
|
|
|
|
gtk_widget_show_all (window);
|
|
|
|
|
|
|
|
/* Since flag is only checked or set inside the GTK lock,
|
|
|
|
* we don't have to worry about locking it explicitly
|
|
|
|
*/
|
|
|
|
while (!flag)
|
|
|
|
{
|
|
|
|
sprintf(buffer, "%d", counter);
|
1998-12-15 20:31:26 +00:00
|
|
|
gtk_label_set_text (GTK_LABEL (label), buffer);
|
1998-12-16 20:09:30 +00:00
|
|
|
gdk_threads_leave();
|
1998-05-16 02:14:09 +00:00
|
|
|
counter++;
|
|
|
|
/* Give someone else a chance to get the lock next time.
|
|
|
|
* Only necessary because we don't do anything else while
|
|
|
|
* releasing the lock.
|
|
|
|
*/
|
|
|
|
sleep(0);
|
|
|
|
|
1998-12-16 20:09:30 +00:00
|
|
|
gdk_threads_enter();
|
1998-05-16 02:14:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gtk_widget_destroy (window);
|
|
|
|
|
|
|
|
pthread_mutex_lock (&nthreads_mutex);
|
|
|
|
nthreads--;
|
|
|
|
if (nthreads == 0)
|
|
|
|
gtk_main_quit();
|
|
|
|
pthread_mutex_unlock (&nthreads_mutex);
|
|
|
|
|
1998-12-16 20:09:30 +00:00
|
|
|
gdk_threads_leave();
|
1998-05-16 02:14:09 +00:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int
|
|
|
|
main (int argc, char **argv)
|
|
|
|
{
|
|
|
|
#ifdef USE_PTHREADS
|
|
|
|
int i;
|
|
|
|
|
1998-12-16 20:09:30 +00:00
|
|
|
if (!gdk_threads_init())
|
1998-05-16 02:14:09 +00:00
|
|
|
{
|
|
|
|
fprintf(stderr, "Could not initialize threads\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_init (&argc, &argv);
|
|
|
|
|
|
|
|
pthread_mutex_lock (&nthreads_mutex);
|
|
|
|
|
|
|
|
for (i=0; i<5; i++)
|
|
|
|
{
|
1998-09-09 09:51:44 +00:00
|
|
|
char buffer[5][10];
|
1998-05-16 02:14:09 +00:00
|
|
|
pthread_t thread;
|
|
|
|
|
1998-09-09 09:51:44 +00:00
|
|
|
sprintf(buffer[i], "Thread %i", i);
|
|
|
|
if (pthread_create (&thread, NULL, counter, buffer[i]))
|
1998-05-16 02:14:09 +00:00
|
|
|
{
|
|
|
|
fprintf(stderr, "Couldn't create thread\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
nthreads++;
|
|
|
|
}
|
|
|
|
|
|
|
|
pthread_mutex_unlock (&nthreads_mutex);
|
|
|
|
|
1998-12-16 20:09:30 +00:00
|
|
|
gdk_threads_enter();
|
1998-05-16 02:14:09 +00:00
|
|
|
gtk_main();
|
1998-12-16 20:09:30 +00:00
|
|
|
gdk_threads_leave();
|
1998-05-16 02:14:09 +00:00
|
|
|
fprintf(stderr, "Done\n");
|
|
|
|
#else /* !USE_PTHREADS */
|
|
|
|
fprintf (stderr, "GTK+ not compiled with threads support\n");
|
|
|
|
exit (1);
|
|
|
|
#endif /* USE_PTHREADS */
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|