1UNW_DESTROY_ADDR_SPACE(3) Programming Library UNW_DESTROY_ADDR_SPACE(3)
2
3
4
6 unw_destroy_addr_space -- destroy unwind address space
7
9 #include <libunwind.h>
10
11 void unw_destroy_addr_space(unw_addr_space_t as);
12
14 The unw_destroy_addr_space() routine destroys the address space speci‐
15 fied by argument as and thereby releases all associated resources (such
16 as memory).
17
18 Applications must not destroy the local address space
19 unw_local_addr_space. Attempting to do so results in undefined behav‐
20 ior (e.g., the application may crash).
21
23 libunwind(3), unw_create_addr_space(3)
24
26 David Mosberger-Tang
27 Hewlett-Packard Labs
28 Palo-Alto, CA 94304
29 Email: davidm@hpl.hp.com
30 WWW: http://www.hpl.hp.com/research/linux/libunwind/.
31
32
33
34Programming Library 05 August 2004 UNW_DESTROY_ADDR_SPACE(3)