]> Zhao Yanbai Git Server - minix.git/commitdiff
rename GETPID to MINIX_GETPID (for now); macro for field name
authorBen Gras <ben@minix3.org>
Mon, 21 Sep 2009 14:45:46 +0000 (14:45 +0000)
committerBen Gras <ben@minix3.org>
Mon, 21 Sep 2009 14:45:46 +0000 (14:45 +0000)
lib/posix/_getppid.c
lib/posix/_ptrace.c

index 7cc5c574c0bae45be140303845cfd0a567007526..a2a0f618e6bb1b4bd6dd0304c5b74d74b0967d91 100755 (executable)
@@ -11,6 +11,6 @@ PUBLIC pid_t getppid()
    * are not always successful and Minix returns the reserved value
    * (pid_t) -1 when there is an error.
    */
-  if (_syscall(MM, GETPID, &m) < 0) return ( (pid_t) -1);
+  if (_syscall(MM, MINIX_GETPID, &m) < 0) return ( (pid_t) -1);
   return( (pid_t) m.m2_i1);
 }
index 35c13aed8203ca5f775e562d3b04e65c7af69ac8..d4d7f52b9a8df18c0850c1b3a9cd44b23cb63266 100755 (executable)
@@ -12,7 +12,7 @@ long data;
 
   m.m2_i1 = pid;
   m.m2_i2 = req;
-  m.m2_l1 = addr;
+  m.PMTRACE_ADDR = addr;
   m.m2_l2 = data;
   if (_syscall(MM, PTRACE, &m) < 0) return(-1);