[xiph-cvs] cvs commit: ices/src config.h im_oss.c im_sun.c input.c

Jack Moffitt jack at xiph.org
Sat Oct 20 19:10:09 PDT 2001



jack        01/10/20 19:10:09

  Modified:    src      config.h im_oss.c im_sun.c input.c
  Log:
  Revert stacksize stuff for ices.

Revision  Changes    Path
1.7       +1 -3      ices/src/config.h

Index: config.h
===================================================================
RCS file: /usr/local/cvsroot/ices/src/config.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- config.h	2001/10/20 22:42:47	1.6
+++ config.h	2001/10/21 02:10:08	1.7
@@ -1,7 +1,7 @@
 /* config.h
  * - configuration, and global structures built from config
  *
- * $Id: config.h,v 1.6 2001/10/20 22:42:47 jack Exp $
+ * $Id: config.h,v 1.7 2001/10/21 02:10:08 jack Exp $
  *
  * Copyright (c) 2001 Michael Smith <msmith at labyrinth.net.au>
  *
@@ -13,8 +13,6 @@
 
 #ifndef __CONFIG_H__
 #define __CONFIG_H__
-
-#define ICES_DEFAULT_STACKSIZE 32768
 
 #include "stream.h"
 #include "inputmodule.h"

1.5       +3 -3      ices/src/im_oss.c

Index: im_oss.c
===================================================================
RCS file: /usr/local/cvsroot/ices/src/im_oss.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- im_oss.c	2001/10/20 22:42:47	1.4
+++ im_oss.c	2001/10/21 02:10:08	1.5
@@ -1,7 +1,7 @@
 /* im_oss.c
  * - Raw PCM input from OSS devices
  *
- * $Id: im_oss.c,v 1.4 2001/10/20 22:42:47 jack Exp $
+ * $Id: im_oss.c,v 1.5 2001/10/21 02:10:08 jack Exp $
  *
  * Copyright (c) 2001 Michael Smith <msmith at labyrinth.net.au>
  *
@@ -244,9 +244,9 @@
         if(use_metadata)
         {
         if(ices_config->metadata_filename)
-            thread_create("im_oss-metadata", metadata_thread_signal, mod, ICES_DEFAULT_STACKSIZE, 1);
+            thread_create("im_oss-metadata", metadata_thread_signal, mod, 1);
         else
-		    thread_create("im_oss-metadata", metadata_thread_stdin, mod, ICES_DEFAULT_STACKSIZE, 1);
+		    thread_create("im_oss-metadata", metadata_thread_stdin, mod, 1);
                 LOG_INFO0("Started metadata update thread");
         }
 

1.5       +3 -3      ices/src/im_sun.c

Index: im_sun.c
===================================================================
RCS file: /usr/local/cvsroot/ices/src/im_sun.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- im_sun.c	2001/10/20 22:42:47	1.4
+++ im_sun.c	2001/10/21 02:10:08	1.5
@@ -1,7 +1,7 @@
 /* im_sun.c
  * - Raw PCM input from Solaris audio devices
  *
- * $Id: im_sun.c,v 1.4 2001/10/20 22:42:47 jack Exp $
+ * $Id: im_sun.c,v 1.5 2001/10/21 02:10:08 jack Exp $
  *
  * by Ciaran Anscomb <ciarana at rd.bbc.co.uk>, based
  * on im_oss.c which is...
@@ -232,9 +232,9 @@
         if(use_metadata)
         {
         if(ices_config->metadata_filename)
-            thread_create("im_sun-metadata", metadata_thread_signal, mod, ICES_DEFAULT_STACK_SIZE, 1);
+            thread_create("im_sun-metadata", metadata_thread_signal, mod, 1);
         else
-		    thread_create("im_sun-metadata", metadata_thread_stdin, mod, ICES_DEFAULT_STACKSIZE, 1);
+		    thread_create("im_sun-metadata", metadata_thread_stdin, mod, 1);
                 LOG_INFO0("Started metadata update thread");
         }
 

1.10      +3 -3      ices/src/input.c

Index: input.c
===================================================================
RCS file: /usr/local/cvsroot/ices/src/input.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- input.c	2001/10/20 22:42:47	1.9
+++ input.c	2001/10/21 02:10:08	1.10
@@ -2,7 +2,7 @@
  *  - Main producer control loop. Fetches data from input modules, and controls
  *    submission of these to the instance threads. Timing control happens here.
  *
- * $Id: input.c,v 1.9 2001/10/20 22:42:47 jack Exp $
+ * $Id: input.c,v 1.10 2001/10/21 02:10:08 jack Exp $
  * 
  * Copyright (c) 2001 Michael Smith <msmith at labyrinth.net.au>
  *
@@ -250,9 +250,9 @@
                 arg->input = inmod;
         /*
                 if(instance->savefilename != NULL)
-			thread_create("savefile", savefile_stream, arg, ICES_DEFAULT_STACKSIZE, 1);
+			thread_create("savefile", savefile_stream, arg, 1);
          */
-		thread_create("stream", ices_instance_stream, arg, ICES_DEFAULT_STACKSIZE, 1);
+		thread_create("stream", ices_instance_stream, arg, 1);
 
                 instance = instance->next;
         }

--- >8 ----
List archives:  http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to 'cvs-request at xiph.org'
containing only the word 'unsubscribe' in the body.  No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.



More information about the commits mailing list