- 论坛徽章:
- 0
|
临时变量,static,malloc分别申请在哪里?
算了,我还是把程序贴出来,大家看吧:
首先,头文件so.h
- #ifndef _SO_H
- #define _SO_H
- int data1 = 21;
- int data2 = 22;
- int data3 = 23;
- void so_f(int *);
- #endif
复制代码
然后,用以编译成so库的so.c文件:
- #include "so.h"
- extern int data1;
- void so_f(int *p)
- {
- (*p) += 10;
- printf("in the shared library:address is %p\n",p);
- }
复制代码
编译命令:- [root@localhost tmp]# pwd
- /root/tmp
- [root@localhost tmp]# gcc -c -fpic so.c
- [root@localhost tmp]# gcc -shared so.o -o so.so
- [root@localhost tmp]# export LD_LIBRARY_PATH=/root/tmp/
- [root@localhost tmp]#
复制代码
使用共享库的程序,aa.c
- #include <stdio.h>;
- #include <string.h>;
- #include <stdlib.h>;
- #include "so.h"
- int main()
- {
- extern int data1;
- printf("first, data1 is %d\n",data1);
- printf("well,the data1 address is %X\n",&data1);
- so_f(&data1);
- printf("last, data1 is %d\n",data1);
- pause();
- return 0;
- }
复制代码
另一个,超级simple的bb.c:
- #include <stdio.h>;
- #include <string.h>;
- #include <stdlib.h>;
- #include "so.h"
- int main()
- {
- extern int data1;
- printf("first, data1 is %d\n",data1);
- printf("well,the address is 0x%p\n",&data1);
- so_f(&data1);
- printf("last, data1 is %d\n",data1);
- return 0;
- }
复制代码
我把aa.c编译成aa可执行文件,bb.c编译成bb。
运行aa,然后手工cat proc的maps文件:
[root@localhost tmp]# ./aa &
[1] 5081
[root@localhost tmp]# first, data1 is 21
well,the data1 address is 0x80496d0
well,the a address is 0xbfffead4
in the shared library:address is 0x80496d0
last, data1 is 31
[root@localhost tmp]# cat /proc/5081/maps
08048000-08049000 r-xp 00000000 03:08 1267031 /root/tmp/aa
08049000-0804a000 rw-p 00000000 03:08 1267031 /root/tmp/aa
40000000-40015000 r-xp 00000000 03:08 454324 /lib/ld-2.3.2.so
40015000-40016000 rw-p 00014000 03:08 454324 /lib/ld-2.3.2.so
40016000-40017000 rw-p 00000000 00:00 0
40017000-40018000 r-xp 00000000 03:08 1267033 /root/tmp/so.so
40018000-40019000 rw-p 00000000 03:08 1267033 /root/tmp/so.so
40019000-4001a000 rw-p 00000000 00:00 0
4002d000-4002e000 rw-p 00000000 00:00 0
42000000-4212e000 r-xp 00000000 03:08 681461 /lib/tls/libc-2.3.2.so
4212e000-42131000 rw-p 0012e000 03:08 681461 /lib/tls/libc-2.3.2.so
42131000-42133000 rw-p 00000000 00:00 0
bfffd000-c0000000 rwxp ffffe000 00:00 0
[root@localhost tmp]#
bb就不用说了吧,输出的内容是反映了不受aa程序对so中data1的改变的影响。 |
|