SFML community forums

Help => System => Topic started by: zac on October 10, 2008, 07:34:58 pm

Title: Some simple questions about the Thread class
Post by: zac on October 10, 2008, 07:34:58 pm
How is the thread class implemented in Linux?
Are they kernel threads (via clone() or sys_clone()?), or fibers?
Is SFML-Thread based on libraries like pethread or GNU-portable-threads?
Title: Some simple questions about the Thread class
Post by: Laurent on October 10, 2008, 07:38:01 pm
SFML threads are based on the pthread library on Linux and MacOS.
Title: Some simple questions about the Thread class
Post by: zac on October 10, 2008, 07:45:09 pm
Thanks.