File tree 1 file changed +2
-8
lines changed
1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -100,16 +100,15 @@ inline uintptr_t hugepage_align_down(uintptr_t addr) {
100
100
// This is also handling the case where the first line is not the binary.
101
101
102
102
static struct text_region FindNodeTextRegion () {
103
+ struct text_region nregion;
104
+ nregion.found_text_region = false ;
103
105
#if defined(__linux__)
104
106
std::ifstream ifs;
105
107
std::string map_line;
106
108
std::string permission;
107
109
std::string dev;
108
110
char dash;
109
111
uintptr_t start, end, offset, inode;
110
- struct text_region nregion;
111
-
112
- nregion.found_text_region = false ;
113
112
114
113
ifs.open (" /proc/self/maps" );
115
114
if (!ifs) {
@@ -161,9 +160,6 @@ static struct text_region FindNodeTextRegion() {
161
160
162
161
ifs.close ();
163
162
#elif defined(__FreeBSD__)
164
- struct text_region nregion;
165
- nregion.found_text_region = false ;
166
-
167
163
std::string exename;
168
164
{
169
165
char selfexe[PATH_MAX];
@@ -220,8 +216,6 @@ static struct text_region FindNodeTextRegion() {
220
216
start += cursz;
221
217
}
222
218
#elif defined(__APPLE__)
223
- struct text_region nregion;
224
- nregion.found_text_region = false ;
225
219
struct vm_region_submap_info_64 map;
226
220
mach_msg_type_number_t count = VM_REGION_SUBMAP_INFO_COUNT_64;
227
221
vm_address_t addr = 0UL ;
You can’t perform that action at this time.
0 commit comments