[tor-commits] [tor/master] Start writing a how to review doc

nickm at torproject.org nickm at torproject.org
Thu Oct 22 14:01:18 UTC 2015


commit 609c1e88701dd483343af3e5a1276916ffcb68d3
Author: Nick Mathewson <nickm at torproject.org>
Date:   Thu Oct 22 10:01:13 2015 -0400

    Start writing a how to review doc
---
 doc/HACKING/CodingStandards.txt |    3 +++
 doc/include.am                  |    1 +
 2 files changed, 4 insertions(+)

diff --git a/doc/HACKING/CodingStandards.txt b/doc/HACKING/CodingStandards.txt
index 2d03b8e..f135fd1 100644
--- a/doc/HACKING/CodingStandards.txt
+++ b/doc/HACKING/CodingStandards.txt
@@ -141,6 +141,9 @@ sure that we worked on MSVC6.
 We don't use strcat or strcpy or sprintf of any of those notoriously broken
 old C functions.  Use strlcat, strlcpy, or tor_snprintf/tor_asprintf instead.
 
+We don't call memcmp() directly.  Use fast_memeq(), fast_memneq(),
+tor_memeq(), or tor_memneq() for most purposes.
+
 Functions not to write
 ~~~~~~~~~~~~~~~~~~~~~~
 
diff --git a/doc/include.am b/doc/include.am
index 9b9e20b..b235211 100644
--- a/doc/include.am
+++ b/doc/include.am
@@ -43,6 +43,7 @@ EXTRA_DIST+= doc/asciidoc-helper.sh			\
 	     doc/HACKING/CodingStandards.txt			\
 	     doc/HACKING/GettingStarted.txt			\
 	     doc/HACKING/HelpfulTools.txt			\
+	     doc/HACKING/HowToReview.txt 			\
 	     doc/HACKING/ReleasingTor.txt                       \
 	     doc/HACKING/WritingTests.txt
 



More information about the tor-commits mailing list