Project DescriptionBada pthread is the missing implementation of POSIX threads for Bada Samsung Mobile Platform. It is based on Osp::Base::Runtime classes.
Unfortunately, POSIX threads are not supported in Bada SDK. This project is an attempt to implement such support. There are only two files:
with no external dependencies except Osp::Base::Runtime and some standard C headers.
There are some limitations. For example, pthread
mutextrylock does not "try" at all, it does the same as pthread
mutexlock. Most notably, currently you should not use pthread
condbroadcast/pthread
condwait in conjunction with critical section mutex. You should use pthread
condenter/pthread
condexit instead.