2 * Ejemplo de threads con la glibmm.
5 * g++ -Wall `pkg-config --cflags --libs glibmm-2.0 gthread-2.0` -o threads threads.cc
10 #include <glibmm/thread.h>
13 void ejecuta_animal(const char* yo)
15 int cuento = 500 + rand()%500;
17 std::cout << yo << ": voy contar hasta " << cuento << std::endl;
18 // Yieldea para que primero imprima todas las "cabeceras".
19 Glib::Thread::yield();
21 for (int i = 0; i <= cuento; i++) {
22 // Si es multiplo de 100, imprimo.
24 std::cout << " " << yo << ": voy por " << i << " de "
25 << cuento << std::endl;
27 // Deja que se schedulee otro thread...
28 // XXX - La doc recomiendo no usar esta funcion, pero la pongo
29 // pa' probar nomas :)
30 Glib::Thread::yield();
34 int main(int argc, char *argv[])
36 // Pone semilla para random.
38 // Inicializa "sistema de threads".
40 // Crea un thread., por defecto no toma argumentos el thread, por lo
41 // que con SigC::bind() le "agrego" un argumento (de tipo const char*)
42 // adicional a la llamada.
43 Glib::Thread* thread1 = Glib::Thread::create(
44 SigC::bind<const char*>(
45 SigC::slot(&ejecuta_animal),
47 0, // Stack por defecto.
48 true, // Es 'joinable'.
49 true, // Se 'schedulea' a nivel de proceso (en linux siempre es asi)
50 Glib::THREAD_PRIORITY_LOW);
51 Glib::Thread* thread2 = Glib::Thread::create(
52 SigC::bind<const char*>(
53 SigC::slot(&ejecuta_animal),
55 0, // Stack por defecto.
56 true, // Es 'joinable'.
57 true, // Se 'schedulea' a nivel de proceso (en linux siempre es asi)
58 Glib::THREAD_PRIORITY_LOW);
59 // Se crea con todo por default (incluso la prioridad).
60 Glib::Thread* thread3 = Glib::Thread::create(
61 SigC::bind<const char*>(
62 SigC::slot(&ejecuta_animal),
65 // Espera a que terminen todods.