- 论坛徽章:
- 0
|
原帖由 wwwsq 于 2008-7-9 22:21 发表 ![]()
1,mutex_log有没有初始化
2,检查一下pthread_mutex_lock成功与否
3,不要调用pthread_cleanup_push和pthread_cleanup_pop
大哥,按照你的吩咐,改了代码如下:
#include <iostream>
#include <string>
#include <unistd.h>
#include <stdlib.h>
#include <pthread.h>
#include <stdarg.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
using namespace std;
void* SendThreadPack(void * args);
void* RecvThreadPack(void * args);
class CTestClass
{
public:
CTestClass(){};
~CTestClass(){};
int Run();
void setP(string &strFile)
{
m_strFile = strFile;
}
private:
pthread_mutex_t mutex_tm;
pthread_mutex_t mutex_log;
string m_strFile;
int WriteLog(const char *filename,const char *message,...);
public:
void SendThread();
void RecvThread();
};
void* SendThreadPack(void * args)
{
((CTestClass*)args)->SendThread();
return (void *)NULL;
}
void* RecvThreadPack(void * args)
{
((CTestClass*)args)->RecvThread();
return (void *)NULL;
}
// 写日志函数
int CTestClass::WriteLog(const char *filename,const char *message,...)
{
time_t timer;
struct tm *tblock;
FILE *logfile;
char FNAME[128];
int year;
va_list ap;
char Tmp_buff[1024];
//pthread_cleanup_push((void(*) (void *))pthread_mutex_unlock, (void *)&mutex_log);
int s;
s = pthread_mutex_lock(&mutex_log);
fprintf(stderr,"pthread_mutex_lock=%d\n",s);
timer=time(NULL);
tblock=localtime(&timer);
year=tblock->tm_year+1900;
strcpy(FNAME,"");
sprintf(FNAME,"%s.%02d%02d",filename,tblock->tm_mon+1,tblock->tm_mday);
if ((logfile=fopen(FNAME,"a"))==NULL)
{
fprintf(stderr,"aaaaaaa\n");
return -1;
}
va_start(ap, message);
memset(Tmp_buff,0,1024);
vsnprintf (Tmp_buff,1023,message, ap);
fprintf(logfile,"[%04d%02d%02d %02d:%02d:%02d]%s\n",
year,tblock->tm_mon+1,tblock->tm_mday,tblock->tm_hour,tblock->tm_min,tblock->tm_sec,Tmp_buff);
fflush(logfile);
fclose(logfile);
s = pthread_mutex_unlock(&mutex_log);
fprintf(stderr,"pthread_mutex_unlock=%d\n",s);
//pthread_cleanup_pop(0);
va_end(ap);
return 1;
}
int CTestClass::Run()
{
int s;
s = pthread_mutex_init(&mutex_tm, NULL);
fprintf(stderr,"pthread_mutex_init(tm)=%d\n",s);
s = pthread_mutex_init(&mutex_log, NULL);
fprintf(stderr,"pthread_mutex_init(log)=%d\n",s);
pthread_t send_pid = 0;
pthread_t recv_pid = 0;
pthread_attr_t SendThreadAttr;
pthread_attr_t RecvThreadAttr;
s = pthread_attr_init( &SendThreadAttr);
fprintf(stderr,"pthread_attr_init(SendThreadAttr)=%d\n",s);
s = pthread_attr_init( &RecvThreadAttr);
fprintf(stderr,"pthread_attr_init(RecvThreadAttr)=%d\n",s);
pthread_attr_setdetachstate( &SendThreadAttr, PTHREAD_CREATE_DETACHED);
pthread_attr_setdetachstate( &RecvThreadAttr, PTHREAD_CREATE_DETACHED);
WriteLog(m_strFile.c_str(),"[pid=%d]**********开始创建线程",getpid());
int ret = -1;
ret = pthread_create( &send_pid, &SendThreadAttr,&SendThreadPack , this);
if (ret != 0)
{
WriteLog(m_strFile.c_str(),"[pid=%d]创建发送线程失败,ret=%d",getpid(),ret);
return -1;
}
ret = pthread_create( &recv_pid, &RecvThreadAttr,&RecvThreadPack , this);
if (ret != 0)
{
WriteLog(m_strFile.c_str(),"[pid=%d]创建接收线程失败,ret=%d",getpid,ret);
return -1;
}
WriteLog(m_strFile.c_str(),"[pid=%d]发送/接收线程创建成功[send_pid=%d,recv_pid=%d]",
getpid(),send_pid,recv_pid);
while (1)
{
int n = pthread_kill(send_pid,0);
int m = pthread_kill(recv_pid,0);
WriteLog(m_strFile.c_str(),"$$$$$$$$$$$$$$$[pid=%d]发送进程sleep(5)n=%d,m=%d",getpid(),n,m);
usleep(5000000);
}
WriteLog(m_strFile.c_str(),"===== 总计: s 条");
return 0;
}
void CTestClass::SendThread()
{
WriteLog(m_strFile.c_str(),"**********[pid=%d] 发送线程创建,开始工作",thread_self());
pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
while (1)
{
pthread_testcancel();
WriteLog(m_strFile.c_str(),"**********[pid=%d|发送线程]工作中.........................",thread_self());
sleep(2);
}
WriteLog(m_strFile.c_str(),"**********[pid=%d] 发送线程退出",thread_self());
}
void CTestClass::RecvThread()
{
WriteLog(m_strFile.c_str(),"**********[pid=%d] 接收线程创建,开始工作",thread_self());
pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
while (1)
{
pthread_testcancel();
WriteLog(m_strFile.c_str(),"**********[pid=%d|接收线程]工作中.........................",thread_self());
sleep(2);
}
WriteLog(m_strFile.c_str(),"**********[pid=%d] 接收线程退出",thread_self());
}
int createSendThread(int s,string &logFile)
{
pid_t pid=1;
pid = fork();
if (pid == 0)
{//子进程
//WriteLog(logfile.c_str(),"[i=%d|pid=%d]--send_run 开始.-----------------------------------",s,getpid());
CTestClass sendSms;
sendSms.setP(logFile);
sendSms.Run();
//WriteLog(logfile.c_str(),"[i=%d|pid=%d]--send_run 结束.-----------------------------------",s,getpid());
exit(1);
}
else if(pid > 0)
{//父进程
fprintf(stderr,"father\n");
}
else
{//fork出错
//WriteLog(logfile.c_str(),"父进程:fork出错.");
return -1;
}
return 0;
}
//==============================================================================
// Main()
//==============================================================================
int main()
{
string logfile="./test.log";
//pthread_mutex_init(&mutex_log, NULL);
for (int i = 0; i < 5; i++)
{
createSendThread(i,logfile);
}
while (1)
{
//WriteLog(logfile.c_str(),"父进程:等待.");
fprintf(stderr,"父进程:等待.");
sleep(10);
}
return 0;
}
可线程中的输出在日志文件里还是看不到.............能否再指点指点..... |
|