From 54a31e566dd0513246e00781f7dfc808c82f062f Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Wed, 31 Jan 2018 23:23:45 +0000 Subject: [PATCH] test_libucontext: explain the stack poisoning part --- test_libucontext.c | 1 + 1 file changed, 1 insertion(+) diff --git a/test_libucontext.c b/test_libucontext.c index 04883ee..121cc3e 100644 --- a/test_libucontext.c +++ b/test_libucontext.c @@ -31,6 +31,7 @@ int main (int argc, const char *argv[]) { char st2[8192]; + /* poison each coroutine's stack memory for debugging purposes */ memset(st1, 'A', sizeof st1); memset(st2, 'B', sizeof st2);