Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
posix_sem bug #3904
posix_sem bug #3904
Comments
|
welcome PR |
posix_sem_find函数在将sem转换成rt_object_t的时候有问题。
object = (rt_object_t)&(iter->sem);
应改为
object = (rt_object_t)iter->sem;