* reload1.c (eliminate_regs_1): Call gen_rtx_raw_SUBREG for SUBREGs
[official-gcc.git] / libgo / runtime / thread-linux.c
blob81ad0f9c9026024b7c5f21fb4c127976d54c109e
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();
20 void
21 runtime_goenvs(void)
23 runtime_goenvs_unix();