We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fe84df commit 27c20d2Copy full SHA for 27c20d2
2 files changed
ptms/romuluslog/RomulusLog.hpp
@@ -20,7 +20,7 @@
20
21
// Size of the persistent memory region
22
#ifndef PM_REGION_SIZE
23
-#define PM_REGION_SIZE (2*1024*1024*1024ULL) // 2GB by default (to run on laptop)
+#define PM_REGION_SIZE (400*1024*1024ULL) // 400 MB by default (to run on laptop)
24
#endif
25
// DAX flag (MAP_SYNC) is needed for Optane but not for /dev/shm/
26
#ifdef PM_USE_DAX
ptms/rwlocks/CRWWP_SpinLock.hpp
@@ -52,9 +52,7 @@
52
* <h1> C-RW-WP </h1>
53
*
54
* A C-RW-WP reader-writer lock with writer preference and using a
55
- * Ticket Lock as Cohort.
56
- * This is starvation-free for writers and for readers, but readers may be
57
- * starved by writers.
+ * spin Lock as Cohort.
58
59
* C-RW-WP paper: http://dl.acm.org/citation.cfm?id=2442532
60
0 commit comments