目标是workin()
在进行其他真正繁重的计算时创建一个低优先级线程。
有没有办法wait()
让我们说,0.5秒?
是否可以在打开时阻止传入字符到终端wait()
?因为它与打印到“处理...”的字符混淆了这部分已解决,请参见下面的解决方案
#include <stdio.h>
#include <pthread.h>
#include <unistd.h>
void *workin(){
int i=0,count=10;
char v[]={' ',' ','-','-','-',' ',' ',' ',' ',' '};
for(;;){
for(i=count-1;i>=0;i--){
v[(i+1)%(count)]=v[i];
}
fflush(stdout);
printf("\r");
printf("processing ");
printf("%s ",v);
sleep(1);
}
}
int main(int argc, char *argv[]){
pthread_t tid;
pthread_create(&tid,NULL,workin,NULL);
sleep(15);/*HEAVY stuff here*/
pthread_cancel(tid);
printf("\r\n");
return 0;
}
解决了一半,不见了wait(0.5)
#include <stdio.h>
#include <pthread.h>
#include <unistd.h>
#include <fcntl.h>
#include <termios.h>
char getch(){
/*#include <unistd.h> //_getch*/
/*#include <termios.h> //_getch*/
char buf=0;
struct termios old = {0};
fflush(stdout);
if(tcgetattr(0, &old) < 0)
perror("tcsetattr()");
old.c_lflag&=~ICANON;
old.c_lflag&=~ECHO;
old.c_cc[VMIN]=1;
old.c_cc[VTIME]=0;
if(tcsetattr(0, TCSANOW, &old) < 0)
perror("tcsetattr ICANON");
if(read(0,&buf,1)<0)
perror("read()");
old.c_lflag|=ICANON;
old.c_lflag|=ECHO;
if(tcsetattr(0, TCSADRAIN, &old) < 0)
perror ("tcsetattr ~ICANON");
return buf;
}
void *workin(){
int i=0,count=10;
char v[]={' ',' ','>','>','>',' ',' ',' ',' ',' '};
for(;;){
for(i=count-1;i>=0;i--){
v[(i+1)%(count)]=v[i];
}
fflush(stdout);
printf("processing ");
printf("%s ",v);
printf("\r");
sleep(1);
}
}
int main(int argc, char *argv[]){
char ch=0;
pthread_t tid;
pthread_create(&tid,NULL,workin,NULL);
do{
ch=getch();/*HEAVY CALCULATIONS HERE*/
}while(1);
pthread_cancel(tid);
printf("\r\n");
return 0;
}