| /* signame.c -- get the name of a signal |
| Copyright 2012 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. */ |
| String Signame (intgo sig) __asm__ (GOSYM_PREFIX "syscall.Signame"); |
| #if defined(HAVE_STRSIGNAL) |
| snprintf(buf, sizeof buf, "signal %ld", (long) sig); |
| len = __builtin_strlen (s); |
| data = runtime_mallocgc (len, nil, false); |
| __builtin_memcpy (data, s, len); |
| // lowercase first letter: Bad -> bad, but STREAM -> STREAM. |
| if ('A' <= data[0] && data[0] <= 'Z' && 'a' <= data[1] && data[1] <= 'z') |