From ce549bd9e9550d4319df27327d228bd12bf140c8 Mon Sep 17 00:00:00 2001 From: patacongo Date: Thu, 10 Mar 2011 18:38:37 +0000 Subject: [PATCH] Fix QEMU context switch bug git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3361 42af7a65-404d-4744-a932-0658087f49c3 --- Makefile | 4 ---- exec_nuttapp_list.h | 2 -- exec_nuttapp_proto.h | 2 -- 3 files changed, 8 deletions(-) delete mode 100644 exec_nuttapp_list.h delete mode 100644 exec_nuttapp_proto.h diff --git a/Makefile b/Makefile index 4bc1f90bc..0deb46e9c 100644 --- a/Makefile +++ b/Makefile @@ -47,7 +47,6 @@ BUILTIN_APPS_BUILT = ifeq ($(CONFIG_BUILTIN_APPS_NUTTX),y) - # Individual application: HELLO ifeq ($(CONFIG_BUILTIN_APPS_HELLO),y) @@ -58,9 +57,6 @@ BUILTIN_APPS_DIR += hello # always walks into the sub-directories and asks for build BUILTIN_APPS_BUILT += hello/.built_always -hello/libhello$(LIBEXT): - @$(MAKE) -C hello TOPDIR="$(TOPDIR)" libhello$(LIBEXT) - endif # end of application list diff --git a/exec_nuttapp_list.h b/exec_nuttapp_list.h deleted file mode 100644 index e8e4424ad..000000000 --- a/exec_nuttapp_list.h +++ /dev/null @@ -1,2 +0,0 @@ -/* List of application requirements, generated during make depend. */ -{ .name = "hello", .priority = SCHED_PRIORITY_DEFAULT, .stacksize = 768, .main = hello_main }, diff --git a/exec_nuttapp_proto.h b/exec_nuttapp_proto.h deleted file mode 100644 index 2c9c65ec9..000000000 --- a/exec_nuttapp_proto.h +++ /dev/null @@ -1,2 +0,0 @@ -/* List of application entry points, generated during make depend. */ -EXTERN int hello_main(int argc, char *argv[]);