
Minidumps are the windows equivalent of unix core files. This commit updates pkg/proc/core so that it can open and read windows minidumps. Updates #794
20 lines
153 B
Go
20 lines
153 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
"time"
|
|
)
|
|
|
|
func f() {
|
|
for {
|
|
time.Sleep(10 * time.Second)
|
|
if len(os.Args) > 1 {
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
func main() {
|
|
f()
|
|
}
|