Go: Get the signal source
#phpA practical tool recommended by editor Baicao is Go: Obtain signal source. This tool can help developers obtain relevant information about signal sources, including signal strength, signal type, operators, etc. By using this tool, developers can easily conduct signal testing and optimization to improve user experience. At the same time, the tool also provides a wealth of functional options, such as signal chart display, signal change monitoring, etc., allowing developers to have a more comprehensive understanding of the signal situation, so as to better debug and optimize. Whether it's mobile app development or web optimization, Go: Get Source is a useful tool.
Question content
I am using go to launch several scripts, when they encounter some problems, they use "alert" signals, I know go can catch these signals, but I need Know the pid of the signal. In c, the signal handler is passed a structure to know the pid of the signal, but in go, this does not seem to be 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\n",s) }
The following example (extracted from the signals documentation) sends me the signal that initiates the call, but does not send any useful information (like the pid)
Workaround
No, you can't Do this in an officially supported way. The go runtime is required to have signal handlers and does not expose additional information in any way.
You can still do this from c by setting up a new signal handler, but I would be very cautious about this (see questions like /7227). You're probably better off using another communication method other than signaling.
The following is a partial example based on the ian code in 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\n", 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) } }
The above is the detailed content of Go: Get the signal source. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The article explains how to use the pprof tool for analyzing Go performance, including enabling profiling, collecting data, and identifying common bottlenecks like CPU and memory issues.Character count: 159

The article discusses writing unit tests in Go, covering best practices, mocking techniques, and tools for efficient test management.

This article demonstrates creating mocks and stubs in Go for unit testing. It emphasizes using interfaces, provides examples of mock implementations, and discusses best practices like keeping mocks focused and using assertion libraries. The articl

This article explores Go's custom type constraints for generics. It details how interfaces define minimum type requirements for generic functions, improving type safety and code reusability. The article also discusses limitations and best practices

The article discusses Go's reflect package, used for runtime manipulation of code, beneficial for serialization, generic programming, and more. It warns of performance costs like slower execution and higher memory use, advising judicious use and best

This article explores using tracing tools to analyze Go application execution flow. It discusses manual and automatic instrumentation techniques, comparing tools like Jaeger, Zipkin, and OpenTelemetry, and highlighting effective data visualization

The article discusses using table-driven tests in Go, a method that uses a table of test cases to test functions with multiple inputs and outcomes. It highlights benefits like improved readability, reduced duplication, scalability, consistency, and a

The article discusses managing Go module dependencies via go.mod, covering specification, updates, and conflict resolution. It emphasizes best practices like semantic versioning and regular updates.
