I do the same. So, when I was using Vi, I may also accidentally pressed CTRL + s, which paused my terminal. Don't worry. Everything is fine. Simply press CTRL + q and the terminal will resume.
Picture: Pumpkins in Minnesota Arboretum. Oct. 2017
paragraph ended before \@citex was completeI could only know there is something wrong in citations/references. But, I had no clue of how to fix it.
comment out \usepackage{cite}.I do not know if this is bug of the class file or if I am not using it properly. I would be happy to know why the "cite" package conflicts with the sigplan class file. Before that, I am happy that I can keep compiling and writing my article now.
java.lang.OutOfMemoryError: Java heap spaceAfter trying different parameter combinations, I finally successfully populated the data store.
binary_memtable_throughput_in_mbBasically, when these threshold are met, e.g., heap usage is over binary_memrable_throughput_in_mb, it will flush binary memtable to relieve the stress on memory space.
memtable_throughput_in_mb
flush_largest_memtable_at
MAX_HEAP_SIZEThen, problem solved. This surprised me because I assume it would automatically choose the right size. However, it does not.
NEW_HEAP_SIZE
Intercept.cpp:69:67: error: lseek64 was not declared in this scopeThis can be solved by adding #include < unistd.h > into Intercept.cpp.
It can be solved by creating a soft link to a specific architecture directory.:1:24: error: asm/unistd.h
ln -s /usr/include/x86_64-linux-gnu/asm /usr/include/asmThen, another problem shows up when assembler is processing crtn.o
Error: .size expression for _init does not evaluate to a constantThe solution is to comment out
.size _init,.-_init and .size _fini, .-_finiin ./libc/sysdeps/linux/x86_64/crtn.S