搜索资源列表
procps-2.0.7.tar
- Linux下进程监控相关源代码,包括top, Ps-Linux advancement monitoring related source code, including top, Ps
linuxtvdvb-1.1.1.tar
- linux环境下的dvb驱动程序,它是linux电视机顶盒环境的基本程序,是机顶盒开发的基础-the DVB drivers, linux is the television set-top box environment of the basic procedures that are the basis for the development of set-top boxes
top-3.4.tar
- linux下的top命令的源代码,适合学习linux或者c语言的同志们参考,可根据自己的需要修改编译-top command under linux source code for learning linux or c language reference comrades, according to their need to modify the compiler
linuxTop
- linux环境下嵌入式平台用于top的命令,更实用.-linux environment for embedded platform top order, but also practical.
top.tar
- 在Linux/UNIX下,可使用top查看系统运行情况。这是一份top源码-top source code
atop-1.23.tar
- 开源的atop: linux下的类top监控工具,比top的功能强一些。 主要从/proc中取信息处理并显示。 -Open source atop: linux monitoring tools under the top of the class, some stronger than the top of the feature. Mainly from/proc to take in information processing and display.
Linux_camera
- Getting Video Data with USB Camera on Linux and Set-top Box
top-c-version
- Linux中top命令的具体实现,可以查看使用到cpu,内存的使用情况。-the realization of commmand "top"
Linux-driver-development10
- 作者:华清远见嵌入式学院。《Linux设备驱动开发详解》(08&09年度畅销榜TOP50)第10章、中断与时钟。本章主要讲解Linux设备驱动编程中的中断与定时器处理。由于中断服务程序的执行并不存在于进程上下文,因此,要求中断服务程序的时间尽可能地短。因此,Linux在中断处理中引入了顶半部和底半部分离的机制。另外,内核中对时钟的处理也采用中断方式,而内核软件定时器最终依赖于时钟中断。10.1节讲解中断和定时器的概念及处理流程。10.2节讲解Linux中断处理程序的架构,顶半部、底半部之间的关系
linux-kernel
- 有关linux内核的框架图,从上层到底层的系统函数调用过程图-The framework of the linux kernel map from the top to the bottom of the system function call graph
top-3.8
- Unix/Linux top工具最新源码,对想了解或修改top功能的,可以研读下,同时对了解/proc文件系统也有帮助。-Unix/Linux top tools for the latest source code, or modify the top of the wish to understand the function, you can read, the same time understanding the/proc file system can also help.
Sams---Linux-Kernel-Development-Second-Edition.ra
- The Linux kernel is one of the most interesting yet least understood open-source projects. It is also a basis for developing new kernel code. That is why Sams is excited to bring you the latest Linux kernel development information from a Novell insid
top-3.4.tar
- top-3.4.tar,top的源码,给需要研究linux底层的一些信息调用的同学-source of top-3.4.tar, top, to the need to study linux underlying information call students
builtin-top
- Builtin top command: Display a continuously updated profile of any workload, CPU or specific PID for linux
top
- A tiny top utility Source Code for Linux. -A tiny top utility Source Code for Linux.
top
- Dump Trace Source Code for Linux.
builtin-top
- Display a continuously updated profile of any workload, CPU or specific PID for Embedded Linux.
top
- 统计跟踪Linux环境CPU使用状态的工具,代码质量优秀-Linux CPU usage statistics tracking the state of the environment tools, code quality excellent
linux--Simple-stock-exchange-system
- 一级投资人买入,二级投资人卖出。 一级投资人买入撮合规则: 将所有卖出该股票的二级投资人进行排序,排序规则是: 卖出价格优先,数量优先,时间优先,(即首先比价格,价格小的排在前面,价格相同的情况下,比数量,数量大的排前面;价格和数量均相同的情况下,比时间,时间早的排在前面) 一、二级投资人有自己单独的帐户 存储一级投资人的报价信息 存储二级投资人的报价信息 存储操作日
Linux-operator-new-delete
- 在 windows 下使用 VC 编程时,我们通常需要 DEBUG 模式下运行程序,而后调试器将在退出程序时,打印出程序运行过程中在堆上分配而没有释放的内存信息,其中包括代码文件名、行号以及内存大小。该功能是 MFC Framework 提供的内置机制,封装在其类结构体系内部。 在 linux 或者 unix 下,我们的 C++ 程序缺乏相应的手段来检测内存信息,而只能使用 top 指令观察进程的动态内存总额。而且程序退出时,我们无法获知任何内存泄漏信息。为了更好的辅助在 linux 下程序