用boost thread的一个简单例子
Submitted by hubdog on Mon, 2013-07-29 10:23客户又要求用boost的thread移植一个windows的DLL到linux,真tmd。
#include
#include
using namespace std;
void ThreadFunction()
{
int counter = 0;
for(;;)
{
cout << "thread iteration " << ++counter << " Press Enter to stop" << endl;
try
{
// Sleep and check for interrupt.
// To check for interrupt without sleep,
// use boost::this_thread::interruption_point()
// which also throws boost::thread_interrupted
翻译C的返回构造体函数为Delphi的注意事项
Submitted by hubdog on Sun, 2013-07-14 00:34很久以前就遇到过返回结构体AVRational的C函数翻译为Delphi之后算出的结果不对。
http://rvelthuis.de/articles/articles-convert.html
原来这是Delphi的编译器的一个问题,我们需要将AVRational返回值映射为Int64就可以了。
在IOS上Indy的https支持
Submitted by hubdog on Tue, 2013-07-09 12:16TBB和OpenMP的比较
Submitted by hubdog on Mon, 2013-07-08 09:51客户要求将一个openmp的代码改成TBB,比较了一下,发现TBB的写法比较复杂,但是效率很高,性能要比OpenMP的好
子类化UIApplication
Submitted by hubdog on Mon, 2013-06-10 11:31如何避免关键字冲突,当翻译Objective-C的接口到Delphi的时候
Submitted by hubdog on Sun, 2013-06-02 11:49加上&符号在关键字前面可以避免冲突
procedure postNotificationName(notificationName: Pointer; &object: Pointer); cdecl;
系统备份脚本
Submitted by hubdog on Sat, 2013-06-01 23:41sudo rsync -azvv /srv/www/ /home/hubdog/backup
tar -zcvf backup_20130601.tar.gz backup
备份数据库
mysqldump -u root -phubdog2425 --all-databases > /home/hubdog/mysql.sql
ios style
Submitted by hubdog on Wed, 2013-05-29 18:39C:\Program Files (x86)\Embarcadero\RAD Studio\11.0\bin\ios 目录下
XE4 IDE中无法编辑plist创建Array类型的数据
Submitted by hubdog on Sat, 2013-05-25 16:39XE4里面没法编辑plist文件,添加array类型的数据,解决办法是
1.build app
2.直接编辑info.plist
3.run app
因为info.plist修改后,不会触发ide重新编译,只会因为重新打包签名。