
thread
知识铺
c/c++ JAVA
展开
-
java学习之路一、工作线程
/** * 类描述:工作线程 * @author * @version */ public abstract class WorkThread extends Thread { /** 最大运行周期*/ protected static final long MAX_RUN_CYCLE = 50L; /** 最小运行周期*/ protected stat原创 2014-04-28 21:42:46 · 499 阅读 · 0 评论 -
多线程中,(实时)信号(转载)
#include #include #include void intr(int sig,siginfo_t *info,void *context) { printf("caught by %d\n",pthread_self()); } void * thread(void * arg) { //安装一个SIGINT信号处理原创 2014-04-28 21:42:05 · 598 阅读 · 0 评论 -
java学习之路二、具体业务实现线程
/** * 业务线程实现类 */ public class OperationThread extends WorkThread { public final static String threadName = "OperationThread"; private final long MAX_RUN_CYCLE = 200L; /*** * * @原创 2014-04-28 21:42:51 · 554 阅读 · 0 评论