一、任务就绪表的结构每个任务被赋予不同的优先等级,从0级到最低优先级OS_LOWEST_PRIO,包括0和OS_LOWEST_PRIO在内。当uC/OS-II初始化时,最低优先级OS_LOWEST_PRIO总是被赋给空闲任务idle task。注意:最多任务数目OS_MAX_TASKS和最低优先级数...
分类:
其他好文 时间:
2014-12-01 22:06:25
阅读次数:
215
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace eluosi{ class Program { stati...
分类:
其他好文 时间:
2014-11-30 21:25:03
阅读次数:
158
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace eluosi{ class Program { stati...
分类:
其他好文 时间:
2014-11-30 21:19:41
阅读次数:
142
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace 内部类使用接口实现排序{ class Person ...
分类:
编程语言 时间:
2014-11-29 00:15:56
阅读次数:
174
CPU time:the amount of time the central processing unit (CPU) uses toperform requested tasks such as calculations, reading and writingdata, conditiona...
分类:
其他好文 时间:
2014-11-27 20:13:13
阅读次数:
1121
top:top命令监控CPU利用率,进程状态和内存利用率并且可以详细列出每一个进程占用了多少CPU和多少内存。
[map@ctb-test sectionLocus]$ top
top - 10:52:24 up 99 days, 21:31, 6 users, load average: 1.67, 2.01, 1.83
Tasks: 665 total, 2 running,...
分类:
编程语言 时间:
2014-11-26 18:53:23
阅读次数:
340
原文来自于:http://www.techug.com/gulpGrunt靠边,全新的建构工具来了。Gulp的code-over-configuration不只让撰写任务(tasks)更加容易,也更好阅读及维护。Glup使用node.js串流(streams)让建构更快速,不须写出资料到硬盘的暂存档...
分类:
其他好文 时间:
2014-11-26 10:58:26
阅读次数:
250
该方法只支持Win7及其以上系统,不支持Windows 20031 $Schedule = New-Object -com "Schedule.Service"2 $Schedule.Connect() 3 $tasks = $Schedule.GetFolder("\").GetTasks(0)4...
分类:
其他好文 时间:
2014-11-25 16:14:50
阅读次数:
147
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication3
{
class Program
{
static void Main(st...
分类:
其他好文 时间:
2014-11-24 10:13:03
阅读次数:
103
题目大意:
用N份工作,M组关系,例如关系A,B表示要先完成B,才能完成A,让你输出一组工作完成的顺序。
解题思路:
拓扑排序。...
分类:
编程语言 时间:
2014-11-22 17:36:41
阅读次数:
163