This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct BufferPos{ | |
uint8_t write; | |
uint8_t read; | |
}; | |
std::atomic<BufferPos> bufferPos; | |
-- | |
Thread 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Programming Books Review | |
http://accu.org/ | |
Whitepapers | |
http://arxiv.org/ | |
http://www.goodreads.com/author/quotes/205.Robert_A_Heinlein | |
http://mitpress.mit.edu/sicp/full-text/book/book.html - Structure and Interpretation | |
of Computer Programs |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# doing a strace on a process | |
strace -c -f ./D4Adaptor | |
# listening on multicast group in iperf | |
/usr/local/bin/iperf -s -i 1 -u -B 224.0.28.46 -p 6313 | |
# spamming multicast | |
/usr/local/bin/iperf -c 224.0.28.46 -u -T 32 -t 60 -i 5 -p 6313 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
C++ | |
The C++ Programming Language, Fourth Edition | |
By: Bjarne Stroustrup | |
Programming: Principles and Practice Using C++, Second Edition | |
By: Bjarne Stroustrup | |
A Tour of C++ | |
By: Bjarne Stroustrup |
NewerOlder