From b88180f8e6292555361060300a5d18a00c0a6e7c Mon Sep 17 00:00:00 2001 From: Ayke van Laethem Date: Mon, 14 Jan 2019 20:56:42 +0100 Subject: [PATCH] runtime: remove ctx param from stub code This was necessary before, when only some functions had a context parameter. Now this is not necessary anymore because all functions (independent of signature) have a context paramter at the end so the signature always automatically matches. --- src/runtime/poll.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/poll.go b/src/runtime/poll.go index c0bc71f2..2713bbea 100644 --- a/src/runtime/poll.go +++ b/src/runtime/poll.go @@ -3,7 +3,7 @@ package runtime // This file implements stub functions for internal/poll. //go:linkname poll_runtime_pollServerInit internal/poll.runtime_pollServerInit -func poll_runtime_pollServerInit(ctx *uint8) { +func poll_runtime_pollServerInit() { panic("todo: runtime_pollServerInit") }