~kris/9p

glenda

ref: f9959eb9e0b2761b3a1ca98181e50f5dd7f781ae glenda/misc.go -rw-r--r-- 274 bytes
f9959eb9 — Sean Hinchee add Remove handler, add bullshit, fix config files (need refactoring badly), update help text 7 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)
	}
}