Remove engine mechanism

Signed-off-by: Antonio Murdaca <me@runcom.ninja>
This commit is contained in:
Antonio Murdaca 2015-04-27 23:11:29 +02:00
parent 861cba008d
commit 1bf50b564c

View file

@ -24,15 +24,15 @@ func checkPidFileAlreadyExists(path string) error {
return nil
}
func New(path string) (file *PidFile, err error) {
func New(path string) (*PidFile, error) {
if err := checkPidFileAlreadyExists(path); err != nil {
return nil, err
}
if err := ioutil.WriteFile(path, []byte(fmt.Sprintf("%d", os.Getpid())), 0644); err != nil {
return nil, err
}
file = &PidFile{path: path}
err = ioutil.WriteFile(path, []byte(fmt.Sprintf("%d", os.Getpid())), 0644)
return file, err
return &PidFile{path: path}, nil
}
func (file PidFile) Remove() error {