WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] Add copyright notice and g/c some unused code.

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] Add copyright notice and g/c some unused code.
From: Xen patchbot -unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Wed, 07 Sep 2005 12:50:11 +0000
Delivery-date: Wed, 07 Sep 2005 12:48:42 +0000
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: xen-devel@xxxxxxxxxxxxxxxxxxx
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User cl349@xxxxxxxxxxxxxxxxxxxx
# Node ID e991ec23c3181136bb78b761053a0a6ea641eac1
# Parent  a75b08af8d198ddb31ea66a054f4b6ade5fe4137
Add copyright notice and g/c some unused code.
Signed-off-by: Christian Limpach <Christian.Limpach@xxxxxxxxxxxx>

diff -r a75b08af8d19 -r e991ec23c318 tools/python/xen/xend/xenstore/xswatch.py
--- a/tools/python/xen/xend/xenstore/xswatch.py Wed Sep  7 12:48:11 2005
+++ b/tools/python/xen/xend/xenstore/xswatch.py Wed Sep  7 12:49:52 2005
@@ -1,3 +1,8 @@
+# Copyright (C) 2005 Christian Limpach <Christian.Limpach@xxxxxxxxxxxx>
+
+# This file is subject to the terms and conditions of the GNU General
+# Public License.  See the file "COPYING" in the main directory of
+# this archive for more details.
 
 import select
 import threading
@@ -9,7 +14,6 @@
     threadcond = threading.Condition()
     xs = None
     xslock = threading.Lock()
-    watches = []
     
     def __init__(self, path, fn, args=(), kwargs={}):
         self.fn = fn
@@ -19,7 +23,6 @@
         xswatch.xslock.acquire()
         xswatch.xs.watch(path, self)
         xswatch.xslock.release()
-        xswatch.watches.append(self)
 
     def watchStart(cls):
         cls.threadcond.acquire()

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] Add copyright notice and g/c some unused code., Xen patchbot -unstable <=