Update Go library to last weekly.
[gcc.git] / libgo / runtime / go-sched.c
1 /* go-sched.c -- the runtime.Gosched function.
2
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. */
6
7 #include <sched.h>
8
9 void Gosched (void) asm ("libgo_runtime.runtime.Gosched");
10
11 void
12 Gosched (void)
13 {
14 sched_yield ();
15 }