[Spread-cvs] cvs commit: spread/daemon arch.h monitor.c

jonathan at spread.org jonathan at spread.org
Fri Sep 24 10:59:23 EDT 2004


jonathan    04/09/24 10:59:23

  Modified:    daemon   arch.h monitor.c
  Log:
  VC++ project files for new windows sptmonitor program. Also small fixes
  from testing on windows.
  
  Revision  Changes    Path
  1.17      +2 -0      spread/daemon/arch.h
  
  Index: arch.h
  ===================================================================
  RCS file: /storage/cvsroot/spread/daemon/arch.h,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- arch.h	14 Apr 2004 19:20:45 -0000	1.16
  +++ arch.h	24 Sep 2004 14:59:23 -0000	1.17
  @@ -176,6 +176,8 @@
   #define         INT32_MAX       INT_MAX
   #endif
   
  +/* Declare functions from arch.c */
  +char    *sock_strerror(int err);
   
   #endif /* ARCH_PC_WIN95 */
   
  
  
  
  1.15      +2 -2      spread/daemon/monitor.c
  
  Index: monitor.c
  ===================================================================
  RCS file: /storage/cvsroot/spread/daemon/monitor.c,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- monitor.c	23 Sep 2004 17:12:52 -0000	1.14
  +++ monitor.c	24 Sep 2004 14:59:23 -0000	1.15
  @@ -255,8 +255,8 @@
   	ret = pthread_create( &Partition_thread, NULL, Partition_send_thread_routine, 0 );
   #else		/* ARCH_PC_WIN95 */
   	Read_thread = CreateThread( NULL, 0, Read_thread_routine, NULL, 0, &ret );
  -	Status_thread = CreateThread( NULL, 0, Status_thread_routine, NULL, 0, &ret );
  -	Partition_thread = CreateThread( NULL, 0, Partition_thread_routine, NULL, 0, &ret );
  +	Status_thread = CreateThread( NULL, 0, Status_send_thread_routine, NULL, 0, &ret );
  +	Partition_thread = CreateThread( NULL, 0, Partition_send_thread_routine, NULL, 0, &ret );
   #endif		/* ARCH_PC_WIN95 */
   
   	for(;;)
  
  
  




More information about the Spread-cvs mailing list