NetBSD-Bugs archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: kern/49691: KASSERT(l->l_md.md_gc_ptp == NULL) failed on NetBSD/amd64 7.0_BETA



The following reply was made to PR kern/49691; it has been noted by GNATS.

From: KAMADA Ken'ichi <kamada%nanohz.org@localhost>
To: gnats-bugs%NetBSD.org@localhost
Cc: kamada%nanohz.org@localhost
Subject: Re: kern/49691: KASSERT(l->l_md.md_gc_ptp == NULL) failed on NetBSD/amd64 7.0_BETA
Date: Sun, 08 Mar 2015 14:49:17 +0900

 >How-To-Repeat:
 
 The following program triggers this panic.
 
 % cat > crash.go
 package main
 import "time"
 func main() {
 	var s []int
 	s = make([]int, 1024 * 1024)
 	s = make([]int, 1024 * 1024)
 	s[0] = 1
 	time.Sleep(550 * time.Second)
 }
 ^D
 % go version
 go version go1.4.2 netbsd/amd64
 % go build crash.go
 % ./crash
 (Wait until the program exit.)
 


Home | Main Index | Thread Index | Old Index