Web运维

  • Linux中的工作队列(转载)

    转载自《Linux中的工作队列》 http://blog.chinaunix.net/space.php?uid=487105&do=blog&cuid=971040 [前记]Linux自从2.6.20之后,工作队列发生了一些变化,目前从网络上搜索的资料一般都是介绍老版本的工作队列,很少见到对新版本的介绍。本文对新老版本都做了简要概述,并分别…

    Linux 2023年4月11日
    00
  • linux中的list源码分析

    网上关于list的源码分析很多,这里只是学习做比较。 list的数据结构定义 /* *双链表 */ struct list_head {   struct list_head * next, ** prev; }; 或许我们比较习惯如下的形式 struct list_head {   struct list_head * next;   struct lis…

    Linux 2023年4月11日
    00
  • Linux输入子系统(转)

      Linux输入子系统(Input Subsystem) 1.1.input子系统概述 输入设备(如按键,键盘,触摸屏,鼠标等)是典型的字符设备,其一般的工作机制是低层在按键,触摸等动作发生时产生一个中断(或驱动通过timer定时查询),然后cpu通过SPI,I2C或者外部存储器总线读取键值,坐标等数据,放一个缓冲区,字符设备驱动管理该缓冲区,而驱动的re…

    Linux 2023年4月11日
    00
  • linux设备驱动编写_tasklet机制(转)

    在编写设备驱动时, tasklet 机制是一种比较常见的机制,通常用于减少中断处理的时间,将本应该是在中断服务程序中完成的任务转化成软中断完成。 为了最大程度的避免中断处理时间过长而导致中断丢失,有时候我们需要把一些在中断处理中不是非常紧急的任务放在后面执行,而让中断处理程序尽快返回。在老版本的 linux 中通常将中断处理分为 top half handl…

    Linux 2023年4月11日
    00
  • linux android 下源码编译问题总结(一)

    对于各种包的安装和解压命令 tar格式#tar -zxvf  *****.tar.gz(tar -xf  *****.tar)#./configure#make#make install rpm包 #rpm -ivh *****.rpm  (安装)#rpm -Uvh *****rpm(升级,只对已经安装了rpm包的) :em11   安装包 sudo apt…

    Linux 2023年4月11日
    00
  • 转:socket编程在windows和linux下的区别

    如无其它说明,本文所指Linux均表示2.6内核Linux,GCC编译器,Windows均表示Windows XP系统,Visual Studio 2005 sp1编译环境。 下面大概分几个方面进行罗列: Linux要包含 [cpp] #include <sys/socket.h>   #include <netinet/in.h> …

    Linux 2023年4月11日
    00
  • socklen_t在windows和linux平台下的头文件定义

    windows平台下:头文件:#include<ws2tcpip.h> linux平台下:下面两个头文件都有定义:1)#include <sys/socket.h>2)#include <unistd.h> 详细定义:typedef int socklen_t; 翻译: 任何完整的库必须定义socklen_t和int相同的…

    Linux 2023年4月11日
    00
  • linux C语言 用openssl进行签名验签 — 亲测2 sha256 sha512

      #include <string.h> #include <openssl/rsa.h> #include <openssl/pem.h> #include <openssl/err.h> #include <openssl/sha.h> #include <openssl/crypto.…

    Linux 2023年4月11日
    00
  • linux C语言 用openssl进行签名验签 — 亲测 sha256 sha512

    1.签名 #include <string.h> #include <openssl/rsa.h> #include <openssl/pem.h> #include <openssl/err.h> #include <openssl/sha.h> #include <openssl/cryp…

    Linux 2023年4月11日
    00
  • Linux下怎样将Windows系统设为默认启动

    先装的Windows XP,再装的Linux,开机时,默认启动的是Linux系统。这里我们要将默认的启动改为windows。 1、首先进入Linux系统,打开终端。2、输入命令:vi /boot/grub/grub.conf  回车—–进入Vi编辑器。3、可以看到”default=0″,4、按Insert键,或者i 键,切换为INSERT模式,将光标移…

    Linux 2023年4月11日
    00
合作推广
合作推广
分享本页
返回顶部