Commit e2c43114 authored by Caleb C. Sander's avatar Caleb C. Sander
Browse files

Rename probe_array for consistency with stage 2

parent 05b12aff
No related merge requests found
Showing with 3 additions and 3 deletions
+3 -3
......@@ -22,15 +22,15 @@ static inline size_t guess_accessed_page(page_t *pages) {
return 0;
}
static inline void do_access(page_t *probe_array, size_t idx) {
static inline void do_access(page_t *pages, size_t idx) {
// TODO: Implement me using force_read. I am a very short function.
}
int main() {
page_t *probe_array = init_pages();
page_t *pages = init_pages();
// TODO: Copy me from the previous stage and edit me so I loop over SECRET_LENGTH characters.
printf("\n");
free(probe_array);
free(pages);
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment