From 86ebbf406c12538c47a583aa893b1e15b3a8837e Mon Sep 17 00:00:00 2001 From: Peter Mitsis Date: Tue, 2 Jun 2015 11:39:44 -0400 Subject: [PATCH] Remove comment listing callers of _NewContext() There is little value in listing the callers of _NewContext() in its function header. Not only was the (deleted) list both incomplete and wrong, keeping it around and properly updated requires error prone maintenance. Change-Id: Iec069847762fdef6b6b2f54ad23c69ab3fa6e592 Signed-off-by: Peter Mitsis --- arch/x86/core/nanocontext.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/arch/x86/core/nanocontext.c b/arch/x86/core/nanocontext.c index 5d12523fe83..4f5d6ee6b70 100644 --- a/arch/x86/core/nanocontext.c +++ b/arch/x86/core/nanocontext.c @@ -281,9 +281,6 @@ __asm__("\t.globl _context_entry\n" * This function is utilized to create execution contexts for both fiber * contexts and kernel task contexts. * -* This function is called by start_task() to initialize task contexts, and -* by _fiber_start() (nanoFiberStart) to initialize fiber contexts. -* * The "context control block" (CCS) is carved from the "end" of the specified * context stack memory. *