From b63f57b949b3bb23e9b6d0b1a5a1a3943fcae044 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Wed, 8 Jul 2015 16:25:39 -0600 Subject: [PATCH] Fix an error in the system/netdb Makefile --- system/netdb/Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/system/netdb/Makefile b/system/netdb/Makefile index 99431f096..3719c1f91 100644 --- a/system/netdb/Makefile +++ b/system/netdb/Makefile @@ -43,8 +43,11 @@ endif # netdb Application -PRIORITY = SCHED_PRIORITY_DEFAULT -STACKSIZE = 768 +CONFIG_SYSTEM_NETDB_STACKSIZE ?= 2048 +CONFIG_SYSTEM_NETDB_PRIORITY ?= 100 + +PRIORITY = $(CONFIG_SYSTEM_NETDB_PRIORITY) +STACKSIZE = $(CONFIG_SYSTEM_NETDB_STACKSIZE) ASRCS = CSRCS = netdb_main.c