From: liang_mike Date: Thu, 24 Jul 2008 03:58:13 +0000 (+0000) Subject: Decrease the threads' stack size X-Git-Tag: release_tinyos_2_1_0_0~36 X-Git-Url: https://oss.titaniummirror.com/gitweb/?p=tinyos-2.x.git;a=commitdiff_plain;h=ac398b601ae246a6d75d8fe3863effd72455b1e4 Decrease the threads' stack size --- diff --git a/apps/tosthreads/apps/BaseStation/stack.h b/apps/tosthreads/apps/BaseStation/stack.h index 0fdaa44c..185b1f50 100644 --- a/apps/tosthreads/apps/BaseStation/stack.h +++ b/apps/tosthreads/apps/BaseStation/stack.h @@ -37,12 +37,12 @@ #define BASE_STATION_APP_STACK_H enum { - BOOT_THREAD_STACK_SIZE = 200, - RADIO_RECEIVE_THREAD_STACK_SIZE = 600, - RADIO_SNOOP_THREAD_STACK_SIZE = 600, - SERIAL_SEND_THREAD_STACK_SIZE = 600, - SERIAL_RECEIVE_THREAD_STACK_SIZE = 600, - RADIO_SEND_THREAD_STACK_SIZE = 600, + BOOT_THREAD_STACK_SIZE = 200, + RADIO_RECEIVE_THREAD_STACK_SIZE = 200, + RADIO_SNOOP_THREAD_STACK_SIZE = 200, + SERIAL_SEND_THREAD_STACK_SIZE = 200, + SERIAL_RECEIVE_THREAD_STACK_SIZE = 200, + RADIO_SEND_THREAD_STACK_SIZE = 200, }; #endif //BASE_STATION_APP_STACK_H