当前位置:  技术问答>linux和unix

怎么样由键盘输入来结束或者暂停循环线程?急

    来源: 互联网  发布时间:2015-12-03

    本文导语:  创建了2个子线程,我想在程序运行中,按x键所有线程就结束或者暂停,应该怎么改?谢谢! 原代码如下: #include  #include  #include  #include    #include  #include  #include  #include  pthread_t tid1, tid2; void * thread1(void *...

创建了2个子线程,我想在程序运行中,按x键所有线程就结束或者暂停,应该怎么改?谢谢!
原代码如下:
#include 
#include 
#include 
#include   
#include 
#include 
#include 
#include 

pthread_t tid1, tid2;

void * thread1(void * arg)
{
while(1)
{
printf("thread1n");
sleep(1);
}
}
void * thread2(void * arg)
{
while(1)
{
printf("thread2n");
sleep(1);
}
}
int main()
{
if(pthread_create(&tid1, NULL, thread1, NULL) != 0)
{
printf("create thread1 error %sn", strerror(errno));
exit(0);
}

if(pthread_create(&tid2, NULL, thread2, NULL) != 0)
{
printf("create thread2 error %sn", strerror(errno));
exit(0);
}
while(1)
{
printf("main threadn");
sleep(1);
}
}

|
你可以利用传参数进线程,
也可以在线程里直接判断键盘输入,
或者利用sem,cond

    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 如何通过界面或键盘来中断一个循环语句?
  • 如何循环接收键盘的输入
  • sun的ultra5启动时显示没有键盘设备,可能是键盘坏了,哪里能找到这种8芯的鬼键盘?
  • 请问一下,安装FreeBSD的时候,我得键盘和鼠标都是USB口的,安装的时候找不到鼠标和键盘怎么办?急!
  • 我安装的是suse的linux,我的键盘用的usb的,安装好以后,键盘的一些符号显示不对。
  • 有两个USB键盘怎么用自己写的USB键盘驱动程序只替换其中一个驱动?
  • 我做了一个缩减的linux系统,将是要在另一台pc机上黑盒运行(即没有键盘,显示器,上电就跑),但我这个缩减的LINUX是要键盘输入密码登陆的,我
  • 解析android中隐藏与显示软键盘及不自动弹出键盘的实现方法
  • arm(2440)没有lcd和qt。怎么测试usb键盘!
  • 请问怎样发送键盘信号?
  • JPanel中如何捕获键盘事件?
  • 急!!如果在程序中模拟一个键盘按键?
  • vmware + Hiweed0.55 升级到testing键盘失效。
  • sun的ultra5启动时显示没有键盘设备,可能是键盘坏了,哪里能找到这种8芯的鬼键盘? iis7站长之家
  • 在安装Linux时"键盘设置"应该选哪种类型的呢?
  • jQuery虚拟键盘 jQuery Keypad
  • 如何用USB口的键盘安装RH8.0
  • 如何做出自己的键盘中断?
  • linux下如何区分多个USB键盘的输入?
  • linux系统下怎么捕捉不到键盘事件
  • 在线等待。。。aram开发问题求救。键盘交互这个怎么实现,怎样实现简便
  • 开发板上内核启动后,键盘键值错乱


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3