自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 资源 (1)
  • 收藏
  • 关注

原创 堆排序

#include #define LARGE 1#define SMALL 0#define LEN 11#define RLEN 10int arr[LEN]; // arr[0] 不使用,坐标从1开始void adjust(int *arr,int s,int len) { int tmp,j; tmp = arr[s]; for(j=2*s; j<=len; j*=

2017-03-06 18:06:54 237

原创 进程号pid

通常,Linux中 最多有32768个进程,最大进程号为32767.Linux 中用一个4KB大小的物理页来作为 进程号位图. 来记录哪些进程号已经分配出去了.4KB = 4 * 1024 * 8 bits = 32768 bits

2017-03-03 21:37:50 736

原创 进程的状态

进程的状态:TASK_RUNNING 1.进程正在被CPU执行2.进程等待CPU执行它TASK_INTERRUPTIBLE进程处于挂起状态,以下情况可将进程返回TASK_RUNNING状态.1.对进程发起中断2.释放某系统资源3.给进程发送一个信号TASK_UNINTERRUPTIBLE和TASK_INTERUPITBLE相似

2017-03-03 21:12:18 279

原创 bus_type

struct bus_type { const char *name; struct bus_attribute *bus_attrs; struct device_attribute *dev_attrs; struct driver_attribute *drv_attrs; int (*match)(struct device *dev, struct device_drive

2017-03-03 01:58:08 393

原创 struct device

struct device { struct device *parent; struct device_private *p; struct kobject kobj; const char *init_name; /* initial name of the device */ struct device_type *type; struct mutex mutex;

2017-03-03 00:57:18 2511

原创 struct kobject

struct kobject { const char *name; struct list_head entry; struct kobject *parent; struct kset *kset; struct kobj_type *ktype; struct sysfs_dirent *sd; struct kref kref; unsigned int state

2017-03-02 23:26:51 619

QT串口通信文档.docx

QT串口通信文档.docx

2020-10-10

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除