From 13782f3357650397a23d491f274b78c91cfd55eb Mon Sep 17 00:00:00 2001 From: Xiang Xiao Date: Tue, 19 Mar 2019 10:20:43 -0600 Subject: [PATCH] include/nuttx/userspace.h: Add add a new field (us_heapend) to struct userspace_s that labels the end of the heap. --- include/nuttx/userspace.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/nuttx/userspace.h b/include/nuttx/userspace.h index 6d1af0276a9..52b92784354 100644 --- a/include/nuttx/userspace.h +++ b/include/nuttx/userspace.h @@ -106,6 +106,7 @@ struct userspace_s uintptr_t us_dataend; uintptr_t us_bssstart; uintptr_t us_bssend; + uintptr_t us_heapend; /* Memory manager heap structure */