[BACK]Return to ext.c CVS log [TXT][DIR] Up to [local] / OpenXM / src / kan96xx / Kan

Diff for /OpenXM/src/kan96xx/Kan/ext.c between version 1.31 and 1.32

version 1.31, 2004/09/16 23:53:44 version 1.32, 2004/09/17 12:32:11
Line 1 
Line 1 
 /* $OpenXM: OpenXM/src/kan96xx/Kan/ext.c,v 1.30 2004/09/14 01:57:15 takayama Exp $ */  /* $OpenXM: OpenXM/src/kan96xx/Kan/ext.c,v 1.31 2004/09/16 23:53:44 takayama Exp $ */
 #include <stdio.h>  #include <stdio.h>
 #include <sys/types.h>  #include <sys/types.h>
 #include <sys/stat.h>  #include <sys/stat.h>
Line 218  struct object Kextension(struct object obj)
Line 218  struct object Kextension(struct object obj)
       putoa(obj3,0,KpoInteger((int) buf.st_size));        putoa(obj3,0,KpoInteger((int) buf.st_size));
       putoa(rob,1,obj3); /* We have not yet read buf fully */        putoa(rob,1,obj3); /* We have not yet read buf fully */
     }      }
     }else if (strcmp(key,"gethostname")==0) {
       abc = (char *)sGC_malloc(sizeof(char)*1024);
       if (gethostname(abc,1023) < 0) {
             errorKan1("%s\n","hostname could not be obtained.");
           }
           rob = KpoString(abc);
   }else if (strcmp(key,"forkExec")==0) {    }else if (strcmp(key,"forkExec")==0) {
     if (size != 4) errorKan1("%s\n","[(forkExec) argList fdList sigblock] extension.");      if (size != 4) errorKan1("%s\n","[(forkExec) argList fdList sigblock] extension.");
     obj1 = getoa(obj,1);      obj1 = getoa(obj,1);

Legend:
Removed from v.1.31  
changed lines
  Added in v.1.32

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>