From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Uday K Verma" Subject: RE: thread programming Date: Fri, 2 Apr 2004 17:49:04 +0530 Sender: linux-c-programming-owner@vger.kernel.org Message-ID: References: Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: List-Id: Content-Type: text/plain; charset="us-ascii" To: 'MuthuKumar' , linux-c-programming@vger.kernel.org I seriously believe you need a C programming book before you delve into threads. Uday K Verma // Hai All. I have tried the basic thread program as #include #include #include void *fun() { printf("Hai\n"); pthread_exit((void *)8); } main() { pthread_t t[10]; int res,ret; int i=0,loop=10; for(i=0;i Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.648 / Virus Database: 415 - Release Date: 3/31/2004 - To unsubscribe from this list: send the line "unsubscribe linux-c-programming" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html