基础:
http://blog.csai.cn/user3/50125/archives/2009/35140.html
多进程:
http://www.ibm.com/developerworks/cn/linux/l-cn-gdbmp/index.html
多线程:
http://www.91linux.com/html/article/program/20070406/1441.html
break [linespec] thread [threadno]
http://www.linuxforum.net/forum/gshowflat.php?Cat=&Board=program&Number=692404&page=0&view=collapsed&sb=5&o=all
In
Unix operating systems, a
soname is a field of data in a
shared object file. The soname is a string (typically the
filename of the library) which is used as a "logical name" describing the functionality of the object. This is often used to provide version backwards-compatibility information. For instance, if versions 1.0 through 1.9 of the shared library
libx provide identical interface, they would all have the same soname, e.g.
libx.so.1. If the system only includes version 1.3 of that shared object,
libx.so.1.3, the soname field of the shared object tells the system that it can be used to fill the dependency for a binary which was originally compiled using version 1.2.