From 3dd4a6857d584437028e1b4e6c70c7add8d1766a Mon Sep 17 00:00:00 2001 From: Sean McBride Date: Wed, 1 Jul 2020 15:04:50 -0400 Subject: [PATCH] docs: fix multi-line comment --- runtime/include/arch/aarch64/context.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/runtime/include/arch/aarch64/context.h b/runtime/include/arch/aarch64/context.h index e4726515..2ae0d358 100644 --- a/runtime/include/arch/aarch64/context.h +++ b/runtime/include/arch/aarch64/context.h @@ -39,8 +39,10 @@ arch_mcontext_restore(mcontext_t *mc, arch_context_t *ctx) { assert(ctx != &worker_thread_base_context); - /* if ctx->regs[0] is set, this was last in a user-level context switch state! - else restore mcontext.. */ + /* + * if ctx->regs[0] is set, this was last in a user-level context switch state! + * else restore mcontext.. + */ if (ctx->regs[0]) { mc->sp = ctx->regs[0]; mc->pc = ctx->regs[1] + ARCH_SIG_JMP_OFF;