Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
cs24-21fa
project05b
Commits
e2c43114
Commit
e2c43114
authored
4 years ago
by
Caleb C. Sander
Browse files
Options
Download
Email Patches
Plain Diff
Rename probe_array for consistency with stage 2
parent
05b12aff
master
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/recover_local_secret.c
+3
-3
src/recover_local_secret.c
with
3 additions
and
3 deletions
+3
-3
src/recover_local_secret.c
View file @
e2c43114
...
...
@@ -22,15 +22,15 @@ static inline size_t guess_accessed_page(page_t *pages) {
return
0
;
}
static
inline
void
do_access
(
page_t
*
p
robe_array
,
size_t
idx
)
{
static
inline
void
do_access
(
page_t
*
p
ages
,
size_t
idx
)
{
// TODO: Implement me using force_read. I am a very short function.
}
int
main
()
{
page_t
*
p
robe_array
=
init_pages
();
page_t
*
p
ages
=
init_pages
();
// TODO: Copy me from the previous stage and edit me so I loop over SECRET_LENGTH characters.
printf
(
"
\n
"
);
free
(
p
robe_array
);
free
(
p
ages
);
}
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help