您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. Source code for "µC/OS-II 2.52"

  2. µC/OS-II, The Real-Time Kernel is a highly portable, ROMable, very scalable, preemptive real-time, multitasking kernel (RTOS) for microprocessors and microcontrollers. µC/OS-II can manage up to 255 tasks and provides the following services:Se maphor
  3. 所属分类:C

    • 发布日期:2007-08-06
    • 文件大小:1048576
    • 提供者:wslywsly
  1. 用c#实现多线程的小程序

  2. ThreadStart start = new ThreadStart(Work); Thread thread = new Thread(start); thread.Start(); thread.Suspend(); Thread.Sleep(3000); Console.WriteLine("挂起后继续执行线程"); thread.Resume (); ...展开收缩
  3. 所属分类:C#

    • 发布日期:2009-05-07
    • 文件大小:90112
    • 提供者:edmondzhu
  1. isos for 51

  2. *************************************************** ISOS V1.0 FUNLLNAME: INTERRUPT SIMULATOR OPERATION SYSTEM (中断模拟操作系统) DESIGNED BY SNOWOCEAN MY QQ:842021900 *************************************************** 介绍: 通过模拟中断来管理多任务。 有两个优先级:高(1)低(0)可在tas
  3. 所属分类:其它

    • 发布日期:2009-05-17
    • 文件大小:3072
    • 提供者:snowocean
  1. SmartThreadPool

  2. SmartThreadPool netC#中的,可以对线程有新的认识 Smart Thread Pool is a thread pool written in C#. The implementation was first based on Stephan Toub's thread pool with some extra features, but now it is far beyond the original. Here is a list of the thread pool
  3. 所属分类:C#

    • 发布日期:2009-05-26
    • 文件大小:126976
    • 提供者:aiai2004
  1. kernel_detective v1.3.0

  2. 修复了一些1.2.1版的小bug。。并支持 Vista SP2/w7 不支持server 2008 What's new in v1.3.0 : [+] Support for Vista SP2 [+] Suspend/Resume Process/Thread [+] Force Resume Process/Thread [+] Unloaded drivers viewer [+] Object Types viewer [+] Timer Objects viewer [+] Ker
  3. 所属分类:其它

    • 发布日期:2009-07-07
    • 文件大小:263168
    • 提供者:vbz001
  1. uCOSII [繁體版]

  2. Chapter 1, Sample Code This chapter is designed to allow you to quickly experiment with and use μC/OS-II. The chapter starts by showing you how to install the distribution diskette and describe the directories created. I then explain some of the cod
  3. 所属分类:C

    • 发布日期:2009-07-09
    • 文件大小:1048576
    • 提供者:channinglan
  1. cp2102资料pdf

  2. Single-Chip USB to UART Data Transfer - Integrated USB transceiver; no external resistors required - Integrated clock; no external crystal required - Integrated 1024-Byte EEPROM for vendor ID, product ID, serial number, power descr iptor, release nu
  3. 所属分类:Linux

    • 发布日期:2009-07-23
    • 文件大小:436224
    • 提供者:shiqing0477
  1. StrongOD v0.2.6

  2. OllyDBG v1.10 plugin - StrongOD v0.2.6 by 海风月影[CUG] ==================================================================== [2009.09.01 v0.2.6.413] 1,添加加载微软符号库的选项 2,Cmdbar增加命令MSG,显示消息号 [2009.08.26 v0.2.6.410] 1,集成Command Bar功能(快捷键改成ALT+F1),可以抛弃cmdbar插件
  3. 所属分类:网络攻防

    • 发布日期:2009-09-11
    • 文件大小:215040
    • 提供者:wumao123
  1. Andriod PM suspend-resume 电源管理

  2. 电源管理主要体现在以下方面: 1.低功耗模式:对于现在的嵌入式芯片,都提供了各种低功率模式,如:提供了STOP,WAIT,DEEP SLEEP等功率状态,为不同的系统应用使用不同的功率模式提供了很好的解决方案。同时,除DEEP SLEEP模式外,在动态电源管理中,大大提高了其他模式之间的转换速度。 2.动态电压与频率调整模式:在动态功率模式中,通过提供不同的电压,不同的系统时钟频率,芯片可以工作于不同的主频上,可以根据系统的负载情况,动态调整芯片的工作状态,只要能满足系统运行需要即可,从而避免
  3. 所属分类:嵌入式

    • 发布日期:2010-10-27
    • 文件大小:80896
    • 提供者:zhenwenxian
  1. android 电源管理相关

  2. android 电源管理相关,有suspend,和resume用法的描述
  3. 所属分类:Android

    • 发布日期:2010-12-28
    • 文件大小:277504
    • 提供者:guolianzhu
  1. thread

  2. 线程suspend 初级
  3. 所属分类:Java

  1. linux_休眠唤醒

  2. 在Linux中,休眠主要分三个主要的步骤: 冻结用户态进程和内核态任务 调用注册的设备的suspend的回调函数 顺序是按照注册顺序 。。。。。
  3. 所属分类:Android

    • 发布日期:2011-09-21
    • 文件大小:57344
    • 提供者:lwpping
  1. 不能调用Suspend/TerminateThread的原因

  2. Why you should never call Suspend/TerminateThread
  3. 所属分类:C

    • 发布日期:2013-12-19
    • 文件大小:18432
    • 提供者:gates84
  1. 线程外部挂起恢复控制(不使用Suspend与Resume中止线程)

  2. 自.NET 2.0以来,Thread.Suspend()与Thread.Resume()方法已过时,VS提示可以使用如Monitor等技术,但是对于刚接触同步控制的人来说理解起来太复杂。本人利用Thread.Abort()与Thread.Interrupt()可以引起目标线程异常的特点,开发了一种不使用已过时的方法来变相从外部控制线程的挂起与恢复的技术,原理简单,方便理解。 相关技术参考:http://msdn.microsoft.com/zh-cn/library/system.thread
  3. 所属分类:C#

    • 发布日期:2014-05-12
    • 文件大小:68608
    • 提供者:liuqixuan1994
  1. Suspend Current ECN

  2. USB ENGINEERING CHANGE NOTICE Suspend Current Limit Changes Applies to USB Specification Revision 2.0
  3. 所属分类:硬件开发

    • 发布日期:2020-08-29
    • 文件大小:71680
    • 提供者:u012028275
  1. SQL Server中避免触发镜像SUSPEND的N种方法

  2. 主要介绍了SQL Server中避免触发镜像SUSPEND的N种方法,需要的朋友可以参考下
  3. 所属分类:其它

    • 发布日期:2020-09-10
    • 文件大小:289792
    • 提供者:weixin_38628920
  1. HomeAssistant-PulseAudio-Disable:该脚本可通过(重新)启动容器时将PulseAudio“ module-suspend-on-idle”模块加载到“ hassio_audio”容器中来帮助解决由“ hassi

  2. HomeAssistant-Pulse音频禁用 在撰写本文时(实际上早在很久以前),Home Assistant hassio_audio Docker容器中的PulseAudio引起了一些问题。 在某些情况下,PulseAudio会导致在其主机设备上使用音频的用户丢失音频。 在某些环境中(例如,在RPi上运行Raspbian且具有特定的OS版本和hassio_audio版本的结合), PulseAudio会在主机上消耗大量CPU 。 以下情况通常是这种情况: RPI (host) OS
  3. 所属分类:其它

    • 发布日期:2021-02-28
    • 文件大小:5120
    • 提供者:weixin_42121086
  1. jvm-suspend-working-thread-机制:jvm暂停工作线程的机制-源码

  2. JVM挂起工作线程的机制与原理 首选使用Clang编译GCC编译会报错目前未研究清楚 内嵌的汇编代码依赖编译后的栈上临时变量跟RBP指针的相对位置不保证编译器优化后内嵌的编译代码能正常运行 怎么运行的 由于编译可能产生问题可以直接在linux上运行 ./main 通过mprotect设置内存访问权限 mprotect提供下图多个访问权限设置 使用mprotect对特定内存区域设置附加保护并注册信号量处理器 当线程访问下图缓冲区指针指向的内存,会产生一个信号量,线程会转移到handler方法 ha
  3. 所属分类:其它

    • 发布日期:2021-02-16
    • 文件大小:7340032
    • 提供者:weixin_42151036
  1. suspend命令 暂停执行shell

  2. suspend是终端的内建命令,可暂停目前正在执行的shell。若要恢复,则必须使用SIGCONT信息。 语法格式:suspend [参数] 常用参数: -f  若目前执行的shell为登入的shell,则suspend预设无法暂停此shell 参考实例 暂停终端 : [rootlinuxcool ~]# suspend -f 与该功能相关的Linux命令:screen命令 – 多重视窗管理程序lvremove命令 – 删除指定LVM逻辑卷sesearch命令 – 查看SElin
  3. 所属分类:其它

    • 发布日期:2021-01-20
    • 文件大小:32768
    • 提供者:weixin_38576811
  1. Linux suspend命令用法详解

  2. Linux suspend命令 Linux suspend命令用于暂停执行shell。 suspend为shell内建指令,可暂停目前正在执行的shell。若要恢复,则必须使用SIGCONT信息。 语法suspend [-f] 参数说明: -f  若目前执行的shell为登入的shell,则suspend预设无法暂停此shell。若要强迫暂停登入的shell,则必须使用-f参数。 实例 暂停shell # suspend -bash: suspend: 无法挂起一个登录 shell # susp
  3. 所属分类:其它

    • 发布日期:2021-01-09
    • 文件大小:20480
    • 提供者:weixin_38647039
« 12 3 4 5 6 7 8 9 10 ... 13 »