* doc/sourcebuild.texi (Ada Tests): Adjust reference to ACATS
[official-gcc.git] / libgo / runtime / go-gomaxprocs.c
blob04dc448b85490ad41be0b75a033dd9e9605de6a0
1 /* go-gomaxprocs.c -- runtime.GOMAXPROCS.
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 /* This is the runtime.GOMAXPROCS function. This currently does
8 nothing, since each goroutine runs in a separate thread anyhow. */
10 void GOMAXPROCS (int) asm ("libgo_runtime.runtime.GOMAXPROCS");
12 void
13 GOMAXPROCS (int n __attribute__ ((unused)))