summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-17 00:30:12 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-17 00:30:12 +0000
commit4f0e8b1249c1550bac83f9db61c67094bc6afc2d (patch)
tree039d43ce0b08169a020076ccc59ee70b2e80c771 /apps
parenta0d71b94386f014bdeff6be77b7444438f867bbd (diff)
downloadnuttx-4f0e8b1249c1550bac83f9db61c67094bc6afc2d.tar.gz
nuttx-4f0e8b1249c1550bac83f9db61c67094bc6afc2d.tar.bz2
nuttx-4f0e8b1249c1550bac83f9db61c67094bc6afc2d.zip
Change the way thread priority is handled in binfmt/ to better match the way that priority is set up for the builtin tasks
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5527 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps')
-rw-r--r--apps/examples/elf/elf_main.c2
-rw-r--r--apps/examples/nxflat/nxflat_main.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/examples/elf/elf_main.c b/apps/examples/elf/elf_main.c
index 66a47592c..2b5c0eb5e 100644
--- a/apps/examples/elf/elf_main.c
+++ b/apps/examples/elf/elf_main.c
@@ -321,7 +321,7 @@ int elf_main(int argc, char *argv[])
/* Execute the ELF module */
- ret = exec_module(&bin, 50);
+ ret = exec_module(&bin);
mm_update(&g_mmstep, "after exec_module");
diff --git a/apps/examples/nxflat/nxflat_main.c b/apps/examples/nxflat/nxflat_main.c
index 536bc1dd8..0c4846a5c 100644
--- a/apps/examples/nxflat/nxflat_main.c
+++ b/apps/examples/nxflat/nxflat_main.c
@@ -243,7 +243,7 @@ int nxflat_main(int argc, char *argv[])
/* Execute the ELF module */
- ret = exec_module(&bin, 50);
+ ret = exec_module(&bin);
if (ret < 0)
{
err("ERROR: Failed to execute program '%s'\n", dirlist[i]);