使用golang时,无法使用cgo例程中的corefile获取堆栈跟踪

时间:2016-02-05 21:29:52

标签: go cgo gccgo

我正在使用Golang和cgo。当我的C代码引发assert()时,在使用cgo时,我无法看到C代码的堆栈跟踪。

相反,我看到抓住断言的golang运行时的堆栈跟踪。

以下是我的C代码

的示例
#include <stdio.h>
#include <pthread.h>
#include <assert.h>
#include <string.h>

void fn2(char *arg)
{
    int stackvar2 = 256;

    printf("Argument %s\n", arg);

    assert(1 == 2);
}

void fn1(int arg)
{
    int stackvar3 = 512;
    char var[256];

    strcpy(var, "deadbeef");

    fn2(var);
}


void *thread(void *arg)
{
    printf("Hello from the thread... going in for an assert\n");

    fn1(1092);

    return NULL;
}

void hello_world(char *str)
{
    pthread_t tid;

    printf("Hello World from C and here the str is from Go: %s\n", str);

    pthread_create(&tid, NULL, thread, NULL);

    sleep(100000);
}


Here is my Go code



package main

/*
extern void hello_world(char *str);
#cgo LDFLAGS: -L. -lhello
#cgo CFLAGS: -g3
*/
import "C"

import (
    _ "fmt"
)

func main() {
    str := "From Golang"

    cStr := C.CString(str)
    C.hello_world(cStr)

    select {}
}

这是我的Makefile

all:
    gcc -g3 -O0 -c hello.c
    ar cru libhello.a hello.o
    go build hello.go

clean:
    rm -f *.o hello

2 个答案:

答案 0 :(得分:1)

除了ulimit -c的明显检查外,使用GOTRACEBACK=crash运行go程序。这将打印出更多信息,并允许程序以SIGABRT退出以触发核心转储。

答案 1 :(得分:0)

实际上我需要将它添加到我的go代码中:signal.Ignore(syscall.SIGABRT)。这允许我看到崩溃的C代码的堆栈跟踪。