re PR lto/48086 (bootstrap-lto creates c-common.s with too many sections on x86_64...
[official-gcc.git] / libgo / runtime / go-sched.c
blob2e36d31a5dc94949b50b7fa00dc7cf5e6e677d3a
1 /* go-sched.c -- the runtime.Gosched function.
3 Copyright 2009 The Go Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style
5 license that can be found in the LICENSE file. */
7 #include <sched.h>
9 void Gosched (void) asm ("libgo_runtime.runtime.Gosched");
11 void
12 Gosched (void)
14 sched_yield ();