Rename CONFIG_DEBUG to CONFIG_DEBUG_FEATURES

This commit is contained in:
Gregory Nutt
2016-06-11 14:14:08 -06:00
parent c211ce8be1
commit 1cdc746726
1185 changed files with 2056 additions and 2019 deletions
+1 -1
View File
@@ -87,7 +87,7 @@ void *operator new(unsigned int nbytes)
void *alloc = lib_malloc(nbytes);
#ifdef CONFIG_DEBUG
#ifdef CONFIG_DEBUG_FEATURES
if (alloc == 0)
{
// Oh my.. we are required to return a valid pointer and
+1 -1
View File
@@ -87,7 +87,7 @@ void *operator new[](unsigned int nbytes)
void *alloc = lib_malloc(nbytes);
#ifdef CONFIG_DEBUG
#ifdef CONFIG_DEBUG_FEATURES
if (alloc == 0)
{
// Oh my.. we are required to return a valid pointer and