摘要:
https://gist.github.com/TomTasche/9690186ndk-gdb of NDK r9d modified to *always* debug the ":remote"-process of your app#!/bin/sh## Copyright (C) 2010... 阅读全文
摘要:
http://blog.dornea.nu/2015/07/01/debugging-android-native-shared-libraries/Since I haven't done this before, I thought I could share some experiences ... 阅读全文
摘要:
H.264 ProfilesProfiles are sets of capabilities. If your black box only supports the Baseline profile it'll not be able to decode a stream using High ... 阅读全文
摘要:
# This is a basic ProFTPD configuration file (rename it to # 'proftpd.conf' for actual use. It establishes a single server# and a single anonymous lo... 阅读全文
该文被密码保护。 阅读全文
摘要:
1.linux HZLinux核心几个重要跟时间有关的名词或变数,以下将介绍HZ、tick与jiffies。HZLinux核心每隔固定周期会发出timer interrupt (IRQ 0),HZ是用来定义每一秒有几次timer interrupts。举例来说,HZ为1000,代表每秒有1000次t... 阅读全文
摘要:
labview 阅读全文
摘要:
一般情况下,编译的时候可能需要加 -g 选项,对于android ndk的-g选项添加请参见android类目下的另一篇文章。 以下文章中的__builtin_return_address() 宏,若要确认它是否在编译器源码中存在,可以在编译器源码中搜索 return_address, 若找到则可以 阅读全文
摘要:
在.vimrc里加入: set swapfile 即可以使能swap file, swapfile的名字一般是 .filename.swp (如 .doc.txt.swp)若打开vi的时候不想使用 swapfile, 可以运行 vim -n filename若要自定vim的swapfile的目录, ... 阅读全文
摘要:
https://github.com/ruanyf/articles/blob/master/2015/2015-02-19-make.md 代码变成可执行文件,叫做编译(compile);先编译这个,还是先编译那个(即编译的安排),叫做构建(build)。 Make是最常用的构建工具,诞生于197 阅读全文