used version: NDK r9b,arm-linux-androideabi-4.6
GCC, with "-O2 -finline-limit=24".got this error:internal compiler error:
segmentation faultI remember...
分类:
其他好文 时间:
2014-06-29 14:14:45
阅读次数:
303
下面的代码片段输出是什么?为什么?
char *ptr;
if((ptr = (char *)malloc(0))==NULL)
puts("Got a null pointer");
else
puts("Got a valid pointer");
解析:......故意把0值传给了函数malloc,得到了一个合法的指针,这就是上面的代码,该代码的输出是"Got ...
分类:
其他好文 时间:
2014-06-08 17:11:28
阅读次数:
285
ELF是类Unix类系统,当然也包括Android系统上的可执行文件格式(也包括.so和.o类文件)。可以理解为Android系统上的exe或者dll文件格式。理解ELF文件规范,是理解Android系统上进程加载、执行的前提。下面我们就来一步步了解这ELF到底是个啥玩意儿(以Arm 32 ELF格式为主)!当然,网上关于ELF的介绍已经非常多,最好的手册还是直接看ELF官方的手册,我这里只是对ELF的文件做个纲领性介绍,然后直奔主题,比如.GOT .PLT或者R_Arm_Jump_Slot,R_Arm_R...
分类:
移动开发 时间:
2014-06-08 05:43:49
阅读次数:
405
[PATCH] Fix an bad variable name erro in runltp
script (/opt/ltp/runltp)Hi All,I got an error for the latest version 20140115 of
ltp project.This erro...
分类:
系统相关 时间:
2014-06-06 17:51:26
阅读次数:
370
Linux与Windows的动态连接库概念相似,但是实现机制不同。它引入了GOT表和PLT表的概念,综合使用了多种重定位项,实现了"浮动代码",达到了更好的共享性能。本文对这些技术逐一进行了详细讨论。本文着重讨论x86体系结构,这是因为(1)运行Linux的各种体系结构中,以x86最为普及;(2)该...
分类:
系统相关 时间:
2014-06-05 15:49:21
阅读次数:
436
mysqldump: Got error: 23: Out of resources when
opening file ‘./mydb/tax_calculation_rate_title.MYD’ (Errcode: 24) when using
LOCK TABLES看到这个后,我比较奇怪,备...
分类:
其他好文 时间:
2014-06-05 13:19:12
阅读次数:
328
先写一个服务器端的监听程序,功能室从客户端读取字符,接收到后告知客户端“I got your
message: ”+收到的消息:server.c#include #include #include #include #include #include
#include ...
分类:
编程语言 时间:
2014-05-30 00:40:28
阅读次数:
419
My original thought was to calculate all the
possible transactions by using nested loop. But got time limit excess error.I
knew it can be done in O(n)...
分类:
其他好文 时间:
2014-05-29 20:44:37
阅读次数:
271
Treasure MapTime Limit:2 Seconds Memory Limit:32768
KBYour boss once had got many copies of a treasure map. Unfortunately, all the
copies are now brok...
分类:
其他好文 时间:
2014-05-29 04:02:47
阅读次数:
313
昨天同事在做主从时,从库报如下错误:Got fatal error 1236 from master when reading data from binary log: 'Misconfigured master - server id was not set'粗粗看好像是master的server-id没有设置,但同事做如下查询:备库采集:
root@localhost Fri May 23 ...
分类:
数据库 时间:
2014-05-25 09:57:24
阅读次数:
330