2011-11-22 21:24:44 +01:00
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "runtime.h"
|
2012-03-06 18:57:23 +01:00
|
|
|
#include "defs.h"
|
|
|
|
|
|
|
|
// Linux futex.
|
2011-11-22 21:24:44 +01:00
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <syscall.h>
|
|
|
|
#include <linux/futex.h>
|
|
|
|
|
|
|
|
void
|
|
|
|
runtime_osinit(void)
|
|
|
|
{
|
|
|
|
runtime_ncpu = getproccount();
|
|
|
|
}
|
2012-01-25 21:56:26 +01:00
|
|
|
|
|
|
|
void
|
|
|
|
runtime_goenvs(void)
|
|
|
|
{
|
|
|
|
runtime_goenvs_unix();
|
|
|
|
}
|