码迷,mamicode.com
首页 >  
搜索关键字:wakeup    ( 94个结果
PHP魔术方法总结 (转)
PHP中的魔术方法总结:__construct,__destruct,__call,__callStatic,__get,__set,__isset,__unset,__sleep,__wakeup,__toString,__set_state,__cloneand__autoload1、__get...
分类:Web程序   时间:2014-11-21 12:05:48    阅读次数:215
php魔术方法__sleep() 和 __wakeup()
魔术方法的使用 <?php class?Connection? { ????protected?$link; ????private?$server,?$username,?$password,?$db; ???? ????public?function?__construct($server,?$username,?$pa...
分类:Web程序   时间:2014-10-29 22:26:33    阅读次数:229
crontab
分时日月周*****+shell实例讲解二:系统cron设定:/etc/crontab通过/etc/crontab文件,可以设定系统定期执行的任务,当然,要想编辑这个文件,得有root权限07***rootmpg123~/wakeup.mp3示例:04**0rootemerge--sync&&emerge-uDworld#每周日凌晨4点,更新系统021**rootr..
分类:其他好文   时间:2014-10-24 19:11:08    阅读次数:239
android wake lock 电源管理简单学习
需要配置清单文件:也可以参考我之前写的这篇文章:http://blog.csdn.net/aikongmeng/article/details/39232017package com.example.wakeup;import android.annotation.SuppressLint;impo...
分类:移动开发   时间:2014-09-23 02:19:23    阅读次数:266
Efficient ticket lock synchronization implementation using early wakeup in the presence of oversubscription
A turn-oriented thread and/or process synchronization facility obtains a ticket value from a monotonically increasing ticket counter and waits until a...
分类:其他好文   时间:2014-09-18 00:32:33    阅读次数:343
待机时间问题处理
我们这边3716mv300和3716cv100 SDK用的是HiSTBAndroidV400R001C00SPC053,现在3716mv300 android待机时数码管显示的时间总是09:58,3716C android待机时间通过修改HiSTBAndroidV400R001C00SPC053/frameworks/base/core/jni/standby_wakeup.c里面HI_Standby_Wakeup这个函数之后,待机可以显示当前时间,但是3716mv300待机时没有跑到HI_Standby_...
分类:其他好文   时间:2014-08-29 21:27:38    阅读次数:336
并行编程之条件变量(posix condition variables)
在整理Java LockSupport.park()的东东,看到了个"Spurious wakeup",重新梳理下。 首先来个《UNIX环境高级编程》里的例子: [cpp] view plaincopy #include    struct msg {       struct msg *m_next;       /* ... mo...
分类:其他好文   时间:2014-08-05 15:53:01    阅读次数:369
android 解锁 点亮屏幕
//保持屏幕常亮  PowerManager pm = (PowerManager) getSystemService(Context.POWER_SERVICE);  mWakeLock = pm.newWakeLock(PowerManager.FULL_WAKE_LOCK | PowerManager.ACQUIRE_CAUSES_WAKEUP, LOCK_TAG);  mWakeLo...
分类:移动开发   时间:2014-07-29 18:04:13    阅读次数:236
创建一个唤醒Alarm,它在10秒钟后触发
创建只激活一次的Alarm,可使用Set方法,给它指定一个Alarm类型、触发时间和一个要激活的pending Intent。 4种Alarm类型: ● RTC_WAKEUP:指定时间唤醒设备,并激活Pending intent ● RTC:指定时间点激活Pending ,但不会唤醒设备 ● ELA...
分类:其他好文   时间:2014-07-16 23:11:51    阅读次数:216
并行编程之条件变量(posix condition variables)
在整理Java LockSupport.park()的东东,看到了个"Spurious wakeup",重新梳理下。 首先来个《UNIX环境高级编程》里的例子: #include struct msg { struct msg *m_next; /* ... more stuff here ... */ }; struct msg *workq; pthread_cond_t qread...
分类:其他好文   时间:2014-06-02 04:45:19    阅读次数:267
94条   上一页 1 ... 7 8 9 10 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!