From 5f2d898113f8991a6894c4db2133115cfbbe3c05 Mon Sep 17 00:00:00 2001 From: patacongo Date: Sun, 1 Jul 2007 18:23:03 +0000 Subject: Added cp command git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@303 42af7a65-404d-4744-a932-0658087f49c3 --- nuttx/examples/ostest/main.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'nuttx/examples/ostest') diff --git a/nuttx/examples/ostest/main.c b/nuttx/examples/ostest/main.c index 889eeaefa..b7f0afbf3 100644 --- a/nuttx/examples/ostest/main.c +++ b/nuttx/examples/ostest/main.c @@ -55,9 +55,15 @@ ************************************************************/ #define PRIORITY 100 -#define STACKSIZE 8192 #define NARGS 4 +/* The task_create task size can be specified in the defconfig file */ +#ifdef CONFIG_OSTEST_STACKSIZE +# define STACKSIZE CONFIG_OSTEST_STACKSIZE +#else +# define STACKSIZE 8192 +#endif + /************************************************************ * Private Data ************************************************************/ -- cgit v1.2.3