Add rule for refreshing from Makefile.build.
[pintos-anon] / src / threads / palloc.h
index 7250e98e64bc64089acc1f4276fc60e7a8da12c7..38a401cb10b4971de6a59f5e5617ab480ba14270 100644 (file)
@@ -1,16 +1,17 @@
-#ifndef HEADER_PALLOC_H
-#define HEADER_PALLOC_H 1
+#ifndef THREADS_PALLOC_H
+#define THREADS_PALLOC_H
 
 #include <stdint.h>
 
 enum palloc_flags
   {
     PAL_ASSERT = 001,           /* Panic on failure. */
-    PAL_ZERO = 002              /* Zero page contents. */
+    PAL_ZERO = 002,             /* Zero page contents. */
+    PAL_USER = 004              /* User page. */
   };
 
 void palloc_init (void);
 void *palloc_get (enum palloc_flags);
 void palloc_free (void *);
 
-#endif /* palloc.h */
+#endif /* threads/palloc.h */