Fix QEMU context switch bug

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3361 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2011-03-10 18:38:37 +00:00
parent 94e0282c22
commit ce549bd9e9
3 changed files with 0 additions and 8 deletions

View File

@ -47,7 +47,6 @@ BUILTIN_APPS_BUILT =
ifeq ($(CONFIG_BUILTIN_APPS_NUTTX),y) ifeq ($(CONFIG_BUILTIN_APPS_NUTTX),y)
# Individual application: HELLO # Individual application: HELLO
ifeq ($(CONFIG_BUILTIN_APPS_HELLO),y) ifeq ($(CONFIG_BUILTIN_APPS_HELLO),y)
@ -58,9 +57,6 @@ BUILTIN_APPS_DIR += hello
# always walks into the sub-directories and asks for build # always walks into the sub-directories and asks for build
BUILTIN_APPS_BUILT += hello/.built_always BUILTIN_APPS_BUILT += hello/.built_always
hello/libhello$(LIBEXT):
@$(MAKE) -C hello TOPDIR="$(TOPDIR)" libhello$(LIBEXT)
endif endif
# end of application list # end of application list

View File

@ -1,2 +0,0 @@
/* List of application requirements, generated during make depend. */
{ .name = "hello", .priority = SCHED_PRIORITY_DEFAULT, .stacksize = 768, .main = hello_main },

View File

@ -1,2 +0,0 @@
/* List of application entry points, generated during make depend. */
EXTERN int hello_main(int argc, char *argv[]);