FLTK logo

[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: Way to determine if I am running on main fltk's thread "lifeatt... Feb 28, 2021  
  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();
}
}
On Sunday, February 28, 2021 at 8:46:57 AM UTC-5 ggar...@gmail.com wrote:
Is there a function to determine whether a piece of code is running on
the main fltk's thread?

Something like:


if ( Fl::main_thread() )
{
  win.show();
}
else
{
// do nothing...
}

--
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/c1c94a90-f434-4ddc-ad5a-4d4fb0a92d4cn%40googlegroups.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'.