[ARM] Fix typo in comment in arm_expand_prologue
[official-gcc.git] / libgo / runtime / thread-linux.c
blobf6d8be90caa4f8da044d3b68ed9692680f08de9b
1 // Copyright 2009 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
5 #include "runtime.h"
6 #include "defs.h"
8 // Linux futex.
10 #include <unistd.h>
11 #include <syscall.h>
12 #include <linux/futex.h>
14 void
15 runtime_osinit(void)
17 runtime_ncpu = getproccount();
18 setncpu(runtime_ncpu);
19 setpagesize(getpagesize());