about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-07-16 19:53:56 -0700
committerKartik Agaram <vc@akkartik.com>2018-07-16 19:53:56 -0700
commitdc9a126ed663d20d41a2475efca415e0ea23e402 (patch)
treedf653b13bc1a619aaaa9f50f3a55801dd38ba381
parent386ebc4e5c5bb0c818da98e1bb342d6db37227fa (diff)
downloadmu-dc9a126ed663d20d41a2475efca415e0ea23e402.tar.gz
4361
-rw-r--r--subx/021translate.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/subx/021translate.cc b/subx/021translate.cc
index 7fdeb93c..630681f5 100644
--- a/subx/021translate.cc
+++ b/subx/021translate.cc
@@ -113,7 +113,7 @@ void dump_elf_header(ostream& out, const program& p) {
     // this efficiency in practice, executable and shared object files must
     // have segment images whose file offsets and virtual addresses are
     // congruent, modulo the page size." -- http://refspecs.linuxbase.org/elf/elf.pdf (page 95)
-    uint32_t p_align = 0x1000;
+    uint32_t p_align = 0x1000;  // default page size on linux
     emit(p_align);
     if (p_offset % p_align != p.segments.at(i).start % p_align) {
       raise << "segment starting at 0x" << HEXWORD << p.segments.at(i).start << " is improperly aligned; alignment for p_offset " << p_offset << " should be " << (p_offset % p_align) << " but is " << (p.segments.at(i).start % p_align) << '\n' << end();
9:19:27 +0200 Remove hard coded bodystruct path everywhere' href='/akspecs/aerc/commit/commands/msg/reply.go?h=0.5.1&id=c574a838fa89bf46bf7188442f400b206b04df95'>c574a83 ^
2a186cf ^
c610c3c ^
98da4c9 ^
475b697 ^

2a09617 ^

475b697 ^
2a09617 ^


6838c23 ^
217e885 ^
2a09617 ^

6838c23 ^
2a09617 ^
475b697 ^

6838c23 ^
3ba69ed ^
8be59ca ^


f5a4d93 ^
3ba69ed ^
475b697 ^
8be59ca ^


3ba69ed ^
8be59ca ^






3ba69ed ^

8be59ca ^

475b697 ^
753adb9 ^

3ba69ed ^
753adb9 ^


ce0d0e8 ^
2a186cf ^



6a1c0f6 ^



753adb9 ^
8bb115d ^


217e85a ^



475b697 ^

2a186cf ^

475b697 ^
38e7165 ^

2a186cf ^
475b697 ^
2a186cf ^
475b697 ^
6a1c0f6 ^



















8f2e505 ^
2a186cf ^

8f2e505 ^




38e7165 ^

186d61f ^

8f2e505 ^

2a186cf ^
38e7165 ^
2a186cf ^
38e7165 ^
2a186cf ^
38e7165 ^

2a186cf ^
ce0d0e8 ^
2a186cf ^
ce0d0e8 ^
475b697 ^

7f97e0b ^
282dc44 ^
217e885 ^
7f97e0b ^
217e885 ^
7f97e0b ^
475b697 ^
67fb093 ^
2a186cf ^


67fb093 ^


bf28e23 ^
67fb093 ^
3ba69ed ^

2a186cf ^
8f1c6c4 ^
3ba69ed ^
38e7165 ^
7f03327 ^
bf28e23 ^
3ba69ed ^
caad1b2 ^
3ba69ed ^





475b697 ^
8be59ca ^
67fb093 ^
8be59ca ^






3ba69ed ^
b1eb7ad ^



3ba69ed ^
8be59ca ^
475b697 ^
217e885 ^
3ba69ed ^

217e885 ^

c574a83 ^
cff4476 ^
c574a83 ^



cff4476 ^

3ba69ed ^
9096049 ^
bf28e23 ^
d238272 ^










8be59ca ^

3ba69ed ^
8be59ca ^
3ba69ed ^
8be59ca ^
475b697 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220