]> Zhao Yanbai Git Server - minix.git/commitdiff
Kernel: correct a few SYSTEM source documentation comments
authorDavid van Moolenbroek <david@minix3.org>
Thu, 17 Sep 2009 20:51:34 +0000 (20:51 +0000)
committerDavid van Moolenbroek <david@minix3.org>
Thu, 17 Sep 2009 20:51:34 +0000 (20:51 +0000)
kernel/system/do_abort.c
kernel/system/do_fork.c
kernel/system/do_memset.c

index 9223dfe391706a0419ad23801a7397f18489dd98..9c219751a7e0cf7d216a265a5023b03e6bd2461f 100644 (file)
@@ -3,7 +3,7 @@
  *
  * The parameters for this kernel call are:
  *    m1_i1:   ABRT_HOW        (how to abort, possibly fetch monitor params)   
- *    m1_i2:   ABRT_MON_PROC   (proc nr to get monitor params from)    
+ *    m1_i2:   ABRT_MON_ENDPT  (proc nr to get monitor params from)    
  *    m1_i3:   ABRT_MON_LEN    (length of monitor params)
  *    m1_p1:   ABRT_MON_ADDR   (virtual address of params)     
  */
index 29b49c03ed962678bad2aeff886e610472a5b7d8..2e5ee9135db7c8e51d4457a54c5d8b528eba054c 100644 (file)
@@ -2,8 +2,10 @@
  *   m_type:   SYS_FORK
  *
  * The parameters for this kernel call are:
- *    m1_i1:   PR_SLOT  (child's process table slot)   
- *    m1_i2:   PR_ENDPT (parent, process that forked)  
+ *    m1_i1:   PR_ENDPT        (parent, process that forked)
+ *    m1_i2:   PR_SLOT         (child's process table slot)
+ *    m1_p1:   PR_MEM_PTR      (new memory map for the child)
+ *    m1_i3:   PR_FORK_FLAGS   (fork flags)
  */
 
 #include "../system.h"
index a6f88f606fa8cd613c946550b6518ac52188f81d..511507042d683eec1ad324c7dd35fe60e484139f 100644 (file)
@@ -4,7 +4,7 @@
  * The parameters for this kernel call are:
  *    m2_p1:   MEM_PTR         (virtual address)       
  *    m2_l1:   MEM_COUNT       (returns physical address)      
- *    m2_l2:   MEM_PATTERN     (size of datastructure)         
+ *    m2_l2:   MEM_PATTERN     (pattern byte to be written)    
  */
 
 #include "../system.h"