一、系统调用初始化void __init trap_init(void) { ...... set_system_gate(SYSCALL_VECTOR,&system_call);//0x80 ...... } 对0x80中断向量。设置了系统调用的总入口system_call。static voi ...
分类:
系统相关 时间:
2017-04-22 18:49:04
阅读次数:
238
时间:2014.07.24 地点:基地 一、前言 今天准备去看场电影《后会无期》,但在这之前,我想好好研究下大名鼎鼎的Boost库。 二、Boost安装 2.1 Boost官网下载Boost最新版Version 1.55.0 2.2将下载压缩包解压到本地 解压后可看到目录下有个bootstrap.b ...
分类:
其他好文 时间:
2017-04-22 13:02:39
阅读次数:
214
我们假设我们有一个单页面的程序,并且想为这个页面添加动画效果。点击某一个链接会将一个试图滑出,同时将另一个试图滑入。 我们将会使用: 使用 ngRoute 来为我们的页面路由 使用 ngAnimate 来为页面创建动画效果 对页面使用 CSS Animations 当我们离开或进入试图时,我们的每一 ...
分类:
移动开发 时间:
2017-04-22 12:59:23
阅读次数:
354
Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining. ...
分类:
移动开发 时间:
2017-04-21 18:48:56
阅读次数:
247
参考:https://pip.pypa.io/en/stable/installing/ 1、wget -c https://bootstrap.pypa.io/get-pip.py 2、python get-pip.py 3、更新pip:pip install -U pip ...
分类:
其他好文 时间:
2017-04-18 19:52:43
阅读次数:
267
题目: Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after rain ...
分类:
移动开发 时间:
2017-04-17 22:12:15
阅读次数:
261
尝试了网上的yeoman generator 生成的脚手架项目不甚理想 npm install -g generator-angular-require yo angular-require 就不用那个了,如今在github上找来一个细致研究下。 文件夹结构: 符合yeoman脚手架的基本文件夹结构 ...
分类:
Web程序 时间:
2017-04-16 17:38:50
阅读次数:
245
补齐昨天的随笔 说是要加一个查询方法,这次写就快了许多。先把页面写好。bootstrap 栅格系统 找到12-3 找到剩余的空白处加一个输入框,百度一个简单的js,两个输入框不能都有值。 control没有改,输入参数的模型多加了一个key 。 存在key 按找key查找。存在time 按time找 ...
分类:
其他好文 时间:
2017-04-13 21:57:21
阅读次数:
207
public class Singleton{ private volatile static Singleton _instance = null; private static readonly object lockHelper = new object(); private Singleto ...
分类:
其他好文 时间:
2017-04-12 13:24:44
阅读次数:
244
当前,项目"学习笔记"功能已齐备,但未设置样式,也只是在本地计算机上运行。在本章中,我们将以简单而专业的方式设置这个项目的样式,再将其部署到一台服务器上,让世界上任何人都能够建立账户。 为设置样式,我们将使用Bootstrap库,这是一组工具,用于Web应用程序设置样式,使其在任何现代设备上都看起来 ...
分类:
其他好文 时间:
2017-04-12 09:55:45
阅读次数:
209