X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=doc%2Fstandards.texi;h=2582e5c58f26e335a2cf4ff9caee5880fa7036da;hb=18654de05aa2c2fa2cc63e2c9c30b9dc536a33d7;hp=fd25730e370c1ca1b6506ef791cf2d0b241f82c0;hpb=1b47a133b4d374666143ad9636b3270ef79757f0;p=pintos-anon diff --git a/doc/standards.texi b/doc/standards.texi index fd25730..2582e5c 100644 --- a/doc/standards.texi +++ b/doc/standards.texi @@ -77,11 +77,6 @@ compile properly without the need for any new macros to be defined. There are a few exceptions: @itemize @bullet -@item -Problem 1-2, @func{thread_join}. Some other code expects -@code{THREAD_JOIN_IMPLEMENTED} to be defined once you've implemented -this function. - @item Problem 1-4, the advanced scheduler. We must be able to turn this on and off with a compile-time directive. You must use the macro name we @@ -207,7 +202,7 @@ terminator and it has performance problems besides. Again, use @func{strlcpy}. @item strcat -Same issue as @func{strcpy}, but substitute @func{strlcat}. +Same issue as @func{strcpy}. Use @func{strlcat} instead. Again, refer to comments in its source code in @code{lib/string.c} for documentation.