[笔记]linux下和windows下的 创建线程函数

linux下和windows下的 创建线程函数

 #ifdef __GNUC__
//Linux
#include <pthread.h>
#define CreateThreadEx(tid,threadFun,args) pthread_create(tid, 0, threadFun, args)
#define CloseHandle(ph)
/*
int pthread_create(
//指向线程标识符的指针。
pthread_t *restrict tidp,
//设置线程属性。传入NULL表示使用默认。
const pthread_attr_t *restrict_attr,
//新线程所执行的线程函数地址。
void*(*start_rtn)(void*),
//传给线程函数的参数。
void *restrict arg
);*/
#else
//windows
#include <process.h>
#define CreateThreadEx(tid,threadFun,args) _beginthreadex(tid, 0, threadFun, args, 0, NULL)
/*
HANDLE WINAPI _beginthreadex(
//线程内核对象的安全属性,一般传入NULL表示使用默认设置。
LPSECURITY_ATTRIBUTES lpThreadAttributes,
//线程栈空间大小。传入0表示使用默认大小(1MB)。
SIZE_T dwStackSize,
//新线程所执行的线程函数地址,多个线程可以使用同一个函数地址。
LPTHREAD_START_ROUTINE lpStartAddress,
//传给线程函数的参数。
LPVOID lpParameter,
//指定额外的标志来控制线程的创建,为0表示线程创建之后立即就可以进行调度,如果为CREATE_SUSPENDED则表示线程创建后暂停运行,这样它就无法调度,直到调用ResumeThread()。
DWORD dwCreationFlags,
//返回线程的ID号,传入NULL表示不需要返回该线程ID号。
LPDWORD lpThreadId
);*/
#endif

一般使用方式: CreateThreadEx(NULL,threadFun,arg);

但是 Linux下,第一个参数不能为空,不然直接段错误!

上一篇:Vmware 10安装MAC OS X 10.9备忘


下一篇:YII2中controller中的behaviors中的behavior内部是如何被使用的?