[BACK]Return to serv1.c CVS log [TXT][DIR] Up to [local] / OpenXM / src / ox_math

Diff for /OpenXM/src/ox_math/serv1.c between version 1.1 and 1.3

version 1.1, 1999/10/29 08:06:41 version 1.3, 1999/11/03 10:56:40
Line 1 
Line 1 
 /* -*- mode: C; coding: euc-japan -*- */  /* -*- mode: C; coding: euc-japan -*- */
 /* $OpenXM$ */  /* $OpenXM: OpenXM/src/ox_math/serv1.c,v 1.2 1999/11/02 06:11:58 ohara Exp $ */
 /* $Id$ */  
   
 #include <stdio.h>  #include <stdio.h>
 #include <stdlib.h>  #include <stdlib.h>
Line 11 
Line 10 
 #include "ox.h"  #include "ox.h"
 #include "serv2.h"  #include "serv2.h"
   
   static int send_ox_sync_ball(int fd);
   
 extern MLINK lp;  extern MLINK lp;
 static int sv_read  = 3;  static int sv_read  = 3;
 static int sv_write = 4;  static int sv_write = 4;
Line 113  int main()
Line 114  int main()
     signal(SIGKILL, handler_kill);      signal(SIGKILL, handler_kill);
   
     /* バイトオーダの決定 */      /* バイトオーダの決定 */
     decideByteOrder2(sv_read, sv_write, 0);      decideByteOrderServer(sv_read, 0);
   
     while(1) {      while(1) {
         receive_ox(sv_read, sv_write);          receive_ox(sv_read, sv_write);

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.3

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