日期:2014-05-17  浏览次数:21030 次

windows下的pthread库

windows下的pthread库,和linux下一模一样,爽。

windows下的pthread库叫做:pthreads-win32,官方网站是:http://sourceware.org/pthreads-win32/,官方FTP是:

ftp://sources.redhat.com/pub/pthreads-win32/。

郁闷的是,FTP里面的内容比较乱,部分已经编译的库有问题。我下载了一个看起来比较新的库,结果弄了半天不能链接。建议大家下载:

ftp://sources.redhat.com/pub/pthreads-win32/pthreads-w32-2-7-0-release.exe这个自解压文件,压缩包里的pthreads.2目录是源码,

Pre-built.2目录是编译所需的头文件和库文件。

先把pthreads-w32-2-7-0-release.exe解压缩到c:/pthreads-w32-2-7-0-release文件夹。
OK!现在写一个简单的pthread来测试:

//main.cpp
#include?<stdio.h>
#include?
<pthread.h>
#include?
<assert.h>

void*?Function_t(void*?Param)
{
????printf(
"我是线程!?");
????pthread_t?myid?
=?pthread_self();
????printf(
"线程ID=%d?",?myid);
????
return?NULL;
}


int?main()
{
????pthread_t?pid;
????pthread_attr_t?attr;
????pthread_attr_init(
&attr);
????pthread_attr_setscope(
&