ChinaUnix.net
相关文章推荐:

pandaboard timer

unix下有没有timer这种东西。我想在程序中定时执行某函数。

by 流言飞语 - C/C++ - 2005-09-27 16:41:20 阅读(1797) 回复(5)

相关讨论

https://groups.google.com/group/android-building/browse_thread/thread/d12c1f7848991d56/ef7859210105747c

by bxfqing - 移动操作系统 - 2011-12-28 22:20:17 阅读(1173) 回复(0)

本帖最后由 chipseesun 于 2012-11-28 16:27 编辑 pandaboard ES采用OMAP4460作为核心处理器。OMAP4460采用双核ARM? Cortex?-A9对称结构,并内置了图形加速器PowerVR? SGX540,是一款功能强悍的高性能处理器,可提供对称多处理(SMP) 性能以及丰富的多媒体与3D图形支持。pandaboard ES同时还支持WLAN与蓝牙(Bluetooth?)连接技术,是一款能够在紧张的移动功率预算内确保项目充分发挥其功能的理想平台。 pandaboard ES的更...

by chipseesun - 嵌入式开发 - 2013-03-27 11:10:58 阅读(6487) 回复(11)

;************************************************************ ; Institute of Automation, Chinese Academy of Sciences ;File Name: Init.s ;Description: timer interrupt test. ;Author: JuGuang,Lee ;Date: ;************************************************************** IOPMOD EQU 0x3FF5000 ;I/O口模式寄存器 IOPDATA EQU 0x3FF5008 ;I/O口数据寄存器 TMOD EQU 0x3FF6000 ;定时器模式寄存器 TDATA0 EQU 0x3FF6...

by zls0315 - Linux文档专区 - 2008-04-28 16:35:10 阅读(606) 回复(0)

Hi! 最近发现dns服务器的messages里面出现了很多的POKED timer的告警,是named发出的,那位DX能帮助解释一下其中的原因,是否会有什么影响? 我的系统是solaris9+bind9.3.2, 谢谢!

by ree - 服务器应用 - 2006-08-23 13:51:10 阅读(2434) 回复(0)

各位大侠,在UNIX下有没有类似于WINDOWS(VC)下的timer事件的功能函数,或者说回调吗?怎么做! 谢谢!

by liuqingzhu - C/C++ - 2003-08-28 02:56:11 阅读(1687) 回复(7)

chipsee电子商城网最新引进pandaboard src="http://hiphotos.baidu.com/ghua11/pic/item/5aaba4f7998b8639dcc4740d.jpg" data-imgref="ref_1">基于 OMAP 4 平台的 pandaboard 包含集成 2 颗 ARM® Cortex™-A9 处理器(每颗运行速率为 1 GHz)的 OMAP4430 处理器,可提供对称多处理 (SMP) 性能以及丰富的多媒体与 3D 图形支持。此外,该电路板还具有 WLAN 与蓝牙 (Bluetooth&...

by chipsee - 移动操作系统 - 2011-12-20 09:44:12 阅读(1241) 回复(0)

timertimerTask 使用timertimerTask可以将一个动作延迟一段时间执行,或者周期性的执行某项任务。延迟动作可以很方便的用Handler实现,没必要用timer。使用timertimerTask周期性的执行某项任务还是非常方便的,它们也是Java本身的特性,可参考文档 http://docs.oracle.com/javase/1.5.0/docs/api/java/util/timer.html (这个要比Google的文档详细很多,包括schedule与scheduleAtFixedRate的区别,cancel与purg...

android

by 中关村村草 - 移动操作系统 - 2011-11-27 14:43:05 阅读(1923) 回复(0)

[code]#include #include #include #include timer.h> void timer_fun(unsigned long data) { } static int __init hello_init(void) { struct timer_list timer; init_timer(&timer); timer.data=0; timer.expires=jiffies+1*HZ; timer.function=timer_fun; add_timer(&timer); printk("timer is running now !!\n"); return 0; } static void __ex...

by heyangya - 驱动开发 - 2011-04-12 08:58:53 阅读(1913) 回复(3)

#include <stdio.h>    // for printf()
#include <unistd.h>   // for pause()
#include <signal.h>   // for signal()
#include <string.h>   // for memset()
#include <sys/time.h> // struct itimeral. setitimer()
#include <pthread.h>
void printMsg(int);
int main() {
  // Get system call result to...

by lingyunwmr - 移动操作系统 - 2011-02-15 22:05:02 阅读(431) 回复(0)