[PD-cvs] pd/src s_main.c,1.7.4.17.2.22.2.32,1.7.4.17.2.22.2.33

Mathieu Bouchard matju at users.sourceforge.net
Sat Aug 4 05:50:51 CEST 2007


Update of /cvsroot/pure-data/pd/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22061

Modified Files:
      Tag: desiredata
	s_main.c 
Log Message:
lost cause


Index: s_main.c
===================================================================
RCS file: /cvsroot/pure-data/pd/src/s_main.c,v
retrieving revision 1.7.4.17.2.22.2.32
retrieving revision 1.7.4.17.2.22.2.33
diff -C2 -d -r1.7.4.17.2.22.2.32 -r1.7.4.17.2.22.2.33
*** s_main.c	3 Aug 2007 00:10:21 -0000	1.7.4.17.2.22.2.32
--- s_main.c	4 Aug 2007 03:50:49 -0000	1.7.4.17.2.22.2.33
***************
*** 14,17 ****
--- 14,18 ----
  #include <fcntl.h>
  #include <stdlib.h>
+ #include <sstream>
  
  #ifdef __CYGWIN__
***************
*** 169,180 ****
          return 0;
  #endif
-     } else {
-             /* open audio and MIDI */
-         sys_reopen_midi();
-         sys_reopen_audio();
-             /* run scheduler until it quits */
-         return m_scheduler();
      }
!     /* } jsarlo */
  }
  
--- 170,181 ----
          return 0;
  #endif
      }
!     /* open audio and MIDI */
!     sys_reopen_midi();
!     sys_reopen_audio();
!     /* run scheduler until it quits */
!     int r = m_scheduler();
!     fprintf(stderr,"%s",lost_posts.str().data()); // this could be useful if anyone ever called sys_exit
!     return r;
  }
  





More information about the Pd-cvs mailing list