Utils/Daemon: Add instance() and logReopen() member and bind SIGHUP to logReopen()
[senf.git] / Utils / singleton.cti
index 51a8c89..d124468 100644 (file)
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
-// Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -35,7 +35,7 @@ prefix_ Self & senf::singleton<Self>::instance()
 {
     static Self instance_;
     // Force instantiation of force_creation (at static object creation time)
-    creator_.nop(); 
+    creator_.nop();
     return instance_;
 }