Skip to content

Instantly share code, notes, and snippets.

View ndeubert's full-sized avatar

Nick Deubert ndeubert

View GitHub Profile
@ndeubert
ndeubert / exit_notify.go
Created March 10, 2023 16:57 — forked from pmalmgren/LICENSE
Go proc connector example, detects when a process exits
package main
import (
"bytes"
"encoding/binary"
"fmt"
"golang.org/x/sys/unix"
"os"
"syscall"
)