| OLD | NEW |
| 1 /* Copyright (C) 2002, 2005, 2007-2012 Free Software Foundation, Inc. | 1 /* Copyright (C) 2002-2013 Free Software Foundation, Inc. |
| 2 | 2 |
| 3 This file is part of GDB. | 3 This file is part of GDB. |
| 4 | 4 |
| 5 This program is free software; you can redistribute it and/or modify | 5 This program is free software; you can redistribute it and/or modify |
| 6 it under the terms of the GNU General Public License as published by | 6 it under the terms of the GNU General Public License as published by |
| 7 the Free Software Foundation; either version 3 of the License, or | 7 the Free Software Foundation; either version 3 of the License, or |
| 8 (at your option) any later version. | 8 (at your option) any later version. |
| 9 | 9 |
| 10 This program is distributed in the hope that it will be useful, | 10 This program is distributed in the hope that it will be useful, |
| 11 but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 GNU General Public License for more details. | 13 GNU General Public License for more details. |
| 14 | 14 |
| 15 You should have received a copy of the GNU General Public License | 15 You should have received a copy of the GNU General Public License |
| 16 along with this program. If not, see <http://www.gnu.org/licenses/>. */ | 16 along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
| 17 | 17 |
| 18 #include "server.h" | 18 #include "server.h" |
| 19 #include "dll.h" |
| 19 | 20 |
| 20 #define get_dll(inf) ((struct dll_info *)(inf)) | 21 #define get_dll(inf) ((struct dll_info *)(inf)) |
| 21 | 22 |
| 22 struct inferior_list all_dlls; | 23 struct inferior_list all_dlls; |
| 23 int dlls_changed; | 24 int dlls_changed; |
| 24 | 25 |
| 25 static void | 26 static void |
| 26 free_one_dll (struct inferior_list_entry *inf) | 27 free_one_dll (struct inferior_list_entry *inf) |
| 27 { | 28 { |
| 28 struct dll_info *dll = get_dll (inf); | 29 struct dll_info *dll = get_dll (inf); |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 dlls_changed = 1; | 102 dlls_changed = 1; |
| 102 } | 103 } |
| 103 } | 104 } |
| 104 | 105 |
| 105 void | 106 void |
| 106 clear_dlls (void) | 107 clear_dlls (void) |
| 107 { | 108 { |
| 108 for_each_inferior (&all_dlls, free_one_dll); | 109 for_each_inferior (&all_dlls, free_one_dll); |
| 109 all_dlls.head = all_dlls.tail = NULL; | 110 all_dlls.head = all_dlls.tail = NULL; |
| 110 } | 111 } |
| OLD | NEW |