No Manual Entry for pthread – Could Not Find Man Page

documentationmanpagepackage-management

I am new to Ubuntu, wanted to code for reader-writer block in Operating System, but when I fired the command man pthread it gave me an error no manual entry for pthread. What can be done to resolve the problem?

Best Answer

First install these manpages:

sudo apt-get install manpages-posix manpages-posix-dev

and then:

man pthreads

Now it should work.

Related Question