登录  
 加关注
   显示下一条  |  关闭
温馨提示!由于新浪微博认证机制调整,您的新浪微博帐号绑定已过期,请重新绑定!立即重新绑定新浪微博》  |  关闭

Code@Pig Home

喜欢背着一袋Code傻笑的Pig .. 忧美.欢笑.记忆.忘却 .之. 角落

 
 
 

日志

 
 

[python] 使用 signal  

2010-06-12 14:41:58|  分类: lang_python |  标签: |举报 |字号 订阅

  下载LOFTER 我的照片书  |
python 中使用 signal 比较简单,理论上多线程下也可以保证接受到,处理掉各种平台上不一致的问题。
-----------------------------------------------------
import signal, threading

stop_thread = False

def handler(signum, frame):
        print "sig"
        global stop_thread
        stop_thread = True

class MyThread(threading.Thread):
        def run(self):
                print "1111 start"
                while not stop_thread:
                        pass
                print "1111 done"


signal.signal(signal.SIGUSR1, handler)

thr = MyThread()
thr.start()

print "2222"
while not stop_thread:
        pass

stop_thread = False
print "3333"
while not stop_thread:
        pass

print "4444"
-----------------------------------------------------
  评论这张
 
阅读(3543)| 评论(0)

历史上的今天

评论

<#--最新日志,群博日志--> <#--推荐日志--> <#--引用记录--> <#--博主推荐--> <#--随机阅读--> <#--首页推荐--> <#--历史上的今天--> <#--被推荐日志--> <#--上一篇,下一篇--> <#-- 热度 --> <#-- 网易新闻广告 --> <#--右边模块结构--> <#--评论模块结构--> <#--引用模块结构--> <#--博主发起的投票-->
 
 
 
 
 
 
 
 
 
 
 
 
 
 

页脚

网易公司版权所有 ©1997-2018