comparison dynodump/ppc/uninit.c @ 2:ac2d302a0011 r19-15b2

Import from CVS: tag r19-15b2
author cvs
date Mon, 13 Aug 2007 08:46:35 +0200
parents 376386a54a3c
children
comparison
equal deleted inserted replaced
1:c0c6a60d29db 2:ac2d302a0011
36 * This is where you put processor specific un-initialization things 36 * This is where you put processor specific un-initialization things
37 * to deal with "initialization idempotency issues". 37 * to deal with "initialization idempotency issues".
38 */ 38 */
39 39
40 extern void __delete_all_module_tags(void); 40 extern void __delete_all_module_tags(void);
41 extern void __exithandle(void);
41 42
42 void 43 void
43 dynodump_uninit(void) 44 dynodump_uninit(void)
44 { 45 {
45 __delete_all_module_tags(); 46 /* There are 2 possible ways to do this. It is not clear which way
47 will be blessed by the Sun Gods. Both appear to work. */
46 48
47 return; 49 /* _exithandle has recently been blessed. */
50
51 /* __delete_all_module_tags(); */
52 _exithandle();
53
54 return;
48 } 55 }