]> Zhao Yanbai Git Server - minix.git/commitdiff
Al's patch
authorBen Gras <ben@minix3.org>
Fri, 23 Sep 2005 20:46:17 +0000 (20:46 +0000)
committerBen Gras <ben@minix3.org>
Fri, 23 Sep 2005 20:46:17 +0000 (20:46 +0000)
servers/pm/break.c

index 83e5e1b8c6f4d52017d4b285e3581adf9c35f773..a628fd28152d59971649c864ee6839a2eade35da 100644 (file)
@@ -12,7 +12,7 @@
  * The entry points into this file are:
  *   do_brk:     BRK/SBRK system calls to grow or shrink the data segment
  *   adjust:     see if a proposed segment adjustment is allowed
- *   size_ok:    see if the segment sizes are feasible
+ *   size_ok:    see if the segment sizes are feasible (i86 only)
  */
 
 #include "pm.h"
@@ -152,6 +152,7 @@ vir_clicks s_vir;           /* virtual address for start of stack seg */
  * (32K, 16K, 16K) will fit, but (33K, 17K, 13K) will not, even though the
  * former is bigger (64K) than the latter (63K).  Even on the 8088 this test
  * is needed, since the data and stack may not exceed 4096 clicks.
+ * Note this is not used for 32-bit Intel Minix, the test is done in-line.
  */
 
   int pt, pd, ps;              /* segment sizes in pages */