发布时间:2014-11-06 12:52:27
对于pthread_create为创建线程传递参数的问题,先前只知道传递单个参数的方法,现在需要传递多个参数。 对于新手的我比较纠结,因此,上网查找资料,发现CU里面的一个帖子(帖子地址后面给出)。 下面把帖子中认为对自己有用的知识摘录下来,以后经常看看。 帖子内容: 1、传递int、short、char等,大小少于一个指针长度类型的,强制转换为(void*),然后在线程函数里转换回来即可; 2、传递多个参数的时候......【阅读全文】
发布时间:2014-11-05 19:13:03
下面引用一段英文原文The shared library sonameIn the earlier example, we embedded the actual name (the real name) of the shared library in an executable file.It is possible to create an alias, called the soname, which will be embedded in an executable file instead .........【阅读全文】