summaryrefslogtreecommitdiff
path: root/misc/server/rush.py
diff options
context:
space:
mode:
authorTeddy <ted.sybil@gmail.com>2013-08-25 20:54:18 +0800
committerTeddy <ted.sybil@gmail.com>2013-08-25 20:54:18 +0800
commit69a0eecd6a831127d04970c4c1b5749c641b8e5e (patch)
tree913847bb7de0ec79ced41b2bb79ed9ed1698df6b /misc/server/rush.py
parent951907736830aadaebf8088433401b6d752e1cec (diff)
removed obsolete dir
Diffstat (limited to 'misc/server/rush.py')
-rw-r--r--misc/server/rush.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/misc/server/rush.py b/misc/server/rush.py
deleted file mode 100644
index f01804c..0000000
--- a/misc/server/rush.py
+++ /dev/null
@@ -1,14 +0,0 @@
-from subprocess import Popen
-procs = []
-
-try:
- for i in xrange(10):
- p = Popen(["python", "client.py", str(i)])
- procs.append(p)
- #p.wait()
- print "done"
-
-except KeyboardInterrupt:
- print "killing"
- for p in procs:
- p.kill()