FLTK logo

Re: [fltk.general] Re: Way to determine if I am running on main fltk's thread

FLTK matrix user chat room
(using Element browser app)   FLTK gitter user chat room   GitHub FLTK Project   FLTK News RSS Feed  
  FLTK Apps      FLTK Library      Forums      Links     Login 
 All Forums  |  Back to fltk.general  ]
 
Previous Message ]New Message | Reply ]Next Message ]

Re: Re: Way to determine if I am running on main fltk's thread Gonzalo Garramuño Feb 28, 2021  
 

El 28/2/21 a las 12:04, lifeatt...@gmail.com escribió:
I believe the "correct" solution is to use Fl::awake() to tell the main thread to perform some operation.

If you can use C++, then you could track thread ids yourself using
#include <thread>

std::thread::id main_thread;
main()
{
main_thread = std::this_thread;
}

func()
{
if (std::this_thread == main_thread)
{
    win.show();
}
}
Oh yes!  std::thread::id!  Had completely forgotten about it.  One gets so immersed in fltk that forgets that the rest of C++ exists :D

--
You received this message because you are subscribed to the Google Groups "fltk.general" group.
To unsubscribe from this group and stop receiving emails from it, send an email to fltkgeneral+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/fltkgeneral/97c9d6e7-d54f-15f3-2078-848461cfd490%40gmail.com.
Direct Link to Message ]
 
     
Previous Message ]New Message | Reply ]Next Message ]
 
 

Comments are owned by the poster. All other content is copyright 1998-2024 by Bill Spitzak and others. This project is hosted by The FLTK Team. Please report site problems to 'erco@seriss.com'.