dsmnedc798226 2015-05-13 15:50
浏览 105
已采纳

转到:获取信号来源

I'm using Go to launch a couple of scripts and when they have some problems they use the "alert" signal, I know Go can capture those signals but I need to know the PID that originated the Signal. in C to the signal handler is passed a structure to know the pid who originated the signal but in Go looks like is not the case

package main

import (
    "fmt"
    "os"
    "os/signal"
)

func main() {

    c := make(chan os.Signal, 1)
    signal.Notify(c, os.Interrupt, os.Kill)

    s := <-c
    fmt.Println("Got signal:", s)
    fmt.Printf("%+v
",s)
}

the example below (extracted from the signal doc) send me the signal who originated the call but not any useful info (like the pid)

  • 写回答

1条回答 默认 最新

  • douhuibo5635 2015-05-13 22:29
    关注

    No, you can't do this in an officially supported manner. The Go runtime needs to own the signal handlers, and that extra information isn't exposed in any way.

    You may still be able to do this from C by setting up a new signal handler, but I would be very cautious going about this (see issues like issue/7227). You're probably better off using another method for communication other than a signal.

    Here's a partial example based on Ian's code from issue 7227:

    package main
    
    /*
    #include <stdio.h>
    #include <signal.h>
    #include <string.h>
    
    struct sigaction old_action;
    void handler(int signum, siginfo_t *info, void *context) {
        printf("Sent by %d
    ", info->si_pid);
    }
    
    void test() {
        struct sigaction action;
        sigaction(SIGUSR1, NULL, &action);
        memset(&action, 0, sizeof action);
        sigfillset(&action.sa_mask);
        action.sa_sigaction = handler;
        action.sa_flags = SA_NOCLDSTOP | SA_SIGINFO | SA_ONSTACK;
        sigaction(SIGUSR1, &action, &old_action);
    }
    */
    import "C"
    
    import (
        "os"
        "syscall"
        "time"
    )
    
    func main() {
        C.test()
        pid := os.Getpid()
        for {
            syscall.Kill(pid, syscall.SIGUSR1)
            time.Sleep(time.Second)
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 C++ yoloV5改写遇到的问题
  • ¥20 win11修改中文用户名路径
  • ¥15 win2012磁盘空间不足,c盘正常,d盘无法写入
  • ¥15 用土力学知识进行土坡稳定性分析与挡土墙设计
  • ¥70 PlayWright在Java上连接CDP关联本地Chrome启动失败,貌似是Windows端口转发问题
  • ¥15 帮我写一个c++工程
  • ¥30 Eclipse官网打不开,官网首页进不去,显示无法访问此页面,求解决方法
  • ¥15 关于smbclient 库的使用
  • ¥15 微信小程序协议怎么写
  • ¥15 c语言怎么用printf(“\b \b”)与getch()实现黑框里写入与删除?