CS318 - Pintos
Pintos source browser for JHU CS318 course
boundary.h
Go to the documentation of this file.
1 #ifndef TESTS_USERPROG_BOUNDARY_H
2 #define TESTS_USERPROG_BOUNDARY_H
3 
4 void *get_boundary_area (void);
5 char *copy_string_across_boundary (const char *);
6 void *get_bad_boundary (void);
7 
8 #endif /**< tests/userprog/boundary.h */
get_bad_boundary
void * get_bad_boundary(void)
tests/userprog/boundary.h
Definition: boundary.c:42
get_boundary_area
void * get_boundary_area(void)
Returns the beginning of a page.
Definition: boundary.c:18
copy_string_across_boundary
char * copy_string_across_boundary(const char *)
Returns a copy of SRC split across the boundary between two pages.
Definition: boundary.c:29