-->

How can threads be created in a solaris environment? Write an example

The function thr_create() function can be used for the creation of a thread. The syntax for the creation of a thread is:



When the function thr_thread() is called it creates a child thread. This will execute concurrently with the parent thread.

Code:


The above code on execution would create two threads. Both the threads would be a copy of the count() function.