2012-01-13 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git] / libgo / runtime / go-breakpoint.c
blobbb6eddc36fc9f324924d63a92257a1f6bba1b132
1 /* go-breakpoint.c -- the runtime.Breakpoint function.
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 #include <sched.h>
9 void Breakpoint (void) asm ("libgo_runtime.runtime.Breakpoint");
11 void
12 Breakpoint (void)
14 __builtin_trap ();