码迷,mamicode.com
首页 >  
搜索关键字:linux-kernel    ( 942个结果
[fw]拦截系统调用
今天在ubuntu中玩了下“拦截系统调用”,记录下自己对整个实现的理解。原理在linux kernel中,系统调用都放在一个叫做“sys_call_table”的分配表里面,在进入一个系统调用的最后一步,会调用与eax中包含的系统调用号对应的特定服务例程:[cpp]view plaincopycal...
分类:其他好文   时间:2014-06-28 22:30:33    阅读次数:270
Android 如何在linux kernel 中读写文件
前言          欢迎大家我分享和推荐好用的代码段~~ 声明          欢迎转载,但请保留文章原始出处:          CSDN:http://www.csdn.net          雨季o莫忧离:http://blog.csdn.net/luckkof 正文   [Description] 如何在linux kernel 中读写文件   [...
分类:移动开发   时间:2014-06-20 12:43:01    阅读次数:259
kernel/vsprintf.c
/** linux/kernel/vsprintf.c** Copyright (C) 1991, 1992 Linus Torvalds*//* vsprintf.c -- Lars Wirzenius & Linus Torvalds. *//** Wirzenius wrote this po...
分类:其他好文   时间:2014-06-18 17:28:50    阅读次数:250
kernel/printk.c
/** linux/kernel/printk.c** Copyright (C) 1991, 1992 Linus Torvalds** Modified to make sys_syslog() more flexible: added commands to* return the last ...
分类:其他好文   时间:2014-06-17 21:10:57    阅读次数:275
kernel/info.c
/** linux/kernel/info.c** Copyright (C) 1992 Darren Senn*//* This implements the sysinfo() system call */#include #include #include #include #include ...
分类:其他好文   时间:2014-06-17 21:08:30    阅读次数:251
Linux Kernel的Makefile与Kconfig文件的语法
https://www.kernel.org/doc/Documentation/kbuild/kconfig-language.txtIntroduction------------The configuration database is a collection of configuratio...
分类:系统相关   时间:2014-06-15 23:22:07    阅读次数:313
Linux 内核的编译系统
Linux  的编译使用 GNU make 工具来检查整个系统的文件和调用 gcc 工具以及脚本完成编译源代码生成 image 等操作。要了解整个编译系统,我们首先要了解 Linux 内核的 Makefile 文件。   Linux 的 编译系统包括 5 个部分 Makefile         顶层的 Makefile 文件 .config 内核配置文件 arch/$(ARCH...
分类:系统相关   时间:2014-06-15 16:05:05    阅读次数:351
Shell编程基础
shell简介 shell是用户和linux内核进行交流的中间层,用户编写的命令就是通过shell解析并交给Linux Kernel执行。 查看当前系统安装的shell 1.查看/etc/shells 2.ll /bin/*sh 可以看出当前系统中存在的shell只有bash、dash、tcsh三种...
分类:其他好文   时间:2014-06-11 07:24:46    阅读次数:263
[转]深入理解GRE tunnel
Posted in Linux Kernel at November 8th, 2012 / 1 Comment ? 我以前写过一篇介绍 tunnel 的文章,只是做了大体的介绍。里面多数 tunnel 是很容易理解的,因为它们多是一对一的,换句话说,是直接从一端到另一端。比如 IPv6 over ...
分类:其他好文   时间:2014-06-09 17:35:09    阅读次数:211
Android体系结构
1. Android应用程序开发技术结构图2. 基于组件的应用程序开发方法3. Android应用程序组件1. Android应用程序开发技术结构图 Linux Kernel Linux核心 提供了Android操作系统的基本功能, 大多是一些驱动 Libraries 分为常用的类...
分类:移动开发   时间:2014-06-07 00:27:36    阅读次数:308
942条   上一页 1 ... 88 89 90 91 92 ... 95 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!