Skip to content

Instantly share code, notes, and snippets.

@achun
achun / grace.go
Created May 5, 2013 07:23 — forked from rcrowley/grace.go
Go 语言中实现优雅的停止程序
package main
import (
"log"
"net"
"os"
"os/signal"
"sync"
"syscall"
"time"
@achun
achun / psam.go
Created April 15, 2013 08:27
测试 GoLang 下,指针,map,struct,数组,对象点操作"."
package main
import (
"fmt"
"runtime"
)
type LogHour struct {
pv uint32
}