From 3e45412327a2654a77944249962b3652e6142299 Mon Sep 17 00:00:00 2001 From: Ondřej Surý Date: Mon, 17 Jan 2011 12:40:45 +0100 Subject: Imported Upstream version 2011.01.12 --- src/pkg/runtime/cgo/linux_arm.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/pkg/runtime/cgo/linux_arm.c (limited to 'src/pkg/runtime/cgo/linux_arm.c') diff --git a/src/pkg/runtime/cgo/linux_arm.c b/src/pkg/runtime/cgo/linux_arm.c new file mode 100644 index 000000000..e556c433c --- /dev/null +++ b/src/pkg/runtime/cgo/linux_arm.c @@ -0,0 +1,19 @@ +// Copyright 2010 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 "libcgo.h" + +static void +xinitcgo(void) +{ +} + +void (*initcgo)(void) = xinitcgo; + +void +libcgo_sys_thread_start(ThreadStart *ts) +{ + // unimplemented + *(int*)0 = 0; +} -- cgit v1.2.3