~kris/9p

glenda

ref: 699e5f0a309941f571df571e0316dad1440a7594 glenda/misc.go -rw-r--r-- 274 bytes
699e5f0a — Sean Hinchee fixed a bug which didnt check for errors, causing rare crashes over time 8 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package main

// Miscellaneous utilities for communicating with Mux

import (
//	"bitbucket.org/henesy/glenda/x/mux"
	"time"
)

// Service for communicating with Mux (starts once)
func CommMux() {
	for {
		select {
		default:
		}

		time.Sleep(500 * time.Millisecond)
	}
}