pthread_create in wp8

Hello. Can I use pthread_create in wp8 ?

you can use std::thread

there are no posix threads for windows phone, use std::thread instead
the transition from pthread to std::thread is very easy
hear is a pretty good tutotial: http://www.baptiste-wicht.com/2012/03/cpp11-concurrency-part1-start-threads/