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.
Этот коммит содержится в:
Ayke van Laethem 2019-01-14 20:56:42 +01:00
родитель c840757352
коммит b88180f8e6
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: E97FF5335DFDFDED

Просмотреть файл

@ -3,7 +3,7 @@ package runtime
// This file implements stub functions for internal/poll. // This file implements stub functions for internal/poll.
//go:linkname poll_runtime_pollServerInit internal/poll.runtime_pollServerInit //go:linkname poll_runtime_pollServerInit internal/poll.runtime_pollServerInit
func poll_runtime_pollServerInit(ctx *uint8) { func poll_runtime_pollServerInit() {
panic("todo: runtime_pollServerInit") panic("todo: runtime_pollServerInit")
} }