Simple Threads
#include<stdio.h>
#include<unistd.h>
#include<pthread.h>
void *threadfn1(void *p)
{
while(1)
{
puts("thread1");
sleep(1);
}
return NULL;
}
void *threadfn2(void *p)
{
while(1)
{
sleep(1);
puts("thread2");
}
return NULL;
}
int main()
{
pthread_t t1,t2;
pthread_create(&t1,NULL,threadfn1,NULL);
pthread_create(&t2,NULL,threadfn2,NULL);
sleep(10);
while(1)
{
sleep(1);
puts("end test");
}
pthread_exit(NULL);
return 0;
}
Recent Stories
Top DiscoverSDK Experts
Mendy Bennett
Experienced with Ad network & Ad servers.
Mobile | Ad Networks and 1 more
View Profile
Karen Fitzgerald
7 years in Cross-Platform development.
Mobile | Cross Platform Frameworks
View Profile
X
Compare Products
Select up to three two products to compare by clicking on the compare icon () of each product.
{{compareToolModel.Error}}Now comparing:
{{product.ProductName | createSubstring:25}} X
{{CommentsModel.TotalCount}} Comments
Your Comment