转自:http://bavon.bokee.com/5429805.html 在x86+Linux上写的程序,在PC机上运行得很好.可是使用ARM的gcc进行交叉编译,再送到DaVinci目标板上运行的时候,出现了Bus error.出现的位置如下(其中Debug的内容是我在程序中添加的调试信息):root@211.69.193.189:~# arm_v5t_le-gcc -g shit.croot@211.69.193.189:~# ./a.outDebug: malloc space for
最近写Qt中的tcp网络编程,Socke连接后,接受到的数据类型是字节型,这就涉及到了大量的类型转换,在网上辗转几辄,总算有了点结果,特此跟大家分享.好了,不废话,下面细说. 方法/步骤 1.打开Qt Creator,我的是2.8.1版本.新建工程,应该包含了基本类型的头文件,这里就不详细说了,因为Qt中的头文件与类名是一样的. 2.首先来两个int类型的数据(或double型): int int_head=5: int int_data=10: 这里的值是随便定的,我的是Socke
一个写操作可以参考: QDataStream &operator >>(QDataStream &in, SerializedMessage &message) { qint32 type; qint32 dataLength; QByteArray dataArray; in >> type >> dataLength; dataArray.resize(dataLength); // <-- You need to add this l
memcpy的原型: SYNOPSIS #include <string.h> void *memcpy(void *dest, const void *src, size_t n); DESCRIPTION The memcpy() function copies n bytes ) if the memory areas do overlap. RETURN VALUE The memcpy() function returns a pointer to dest. 实现时要注意: 1.