]> git.pond.sub.org Git - empserver/blobdiff - src/server/shutdown.c
Update copyright notice
[empserver] / src / server / shutdown.c
index 6793b64cea0b637cac8fb352e43920bb4d25bd5d..7d5f4f46badac221e6ea2fd92aadcbfc6316182c 100644 (file)
@@ -1,11 +1,11 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2009, Dave Pare, Jeff Bailey, Thomas Ruschak,
- *                           Ken Stevens, Steve McClure
+ *  Copyright (C) 1986-2020, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *                Ken Stevens, Steve McClure, Markus Armbruster
  *
- *  This program is free software; you can redistribute it and/or modify
+ *  Empire is free software: you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
- *  the Free Software Foundation; either version 2 of the License, or
+ *  the Free Software Foundation, either version 3 of the License, or
  *  (at your option) any later version.
  *
  *  This program is distributed in the hope that it will be useful,
@@ -14,8 +14,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
  *
  *  ---
  *
  *
  *  Known contributors to this file:
  *     Ken Stevens, 1995
- *     Markus Armbruster, 2007-2008
+ *     Markus Armbruster, 2007-2013
  */
 
 #include <config.h>
 
 #include <time.h>
 #include "empthread.h"
-#include "file.h"
-#include "nat.h"
 #include "prototypes.h"
 #include "server.h"
 
@@ -47,8 +44,8 @@ static empth_t *shutdown_thread;
 static void shutdown_sequence(void *unused);
 
 /*
- * Initiate shutdown in MINS_FROM_NOW minutes.
- * If MINS_FROM_NOW is negative, cancel any pending shutdown instead.
+ * Initiate shutdown in @mins_from_now minutes.
+ * If @mins_from_now is negative, cancel any pending shutdown instead.
  * Return -1 on error, zero when no shutdown was pending, positive
  * number when a pending shutdown was modified.
  */
@@ -73,7 +70,7 @@ shutdown_initiate(int mins_from_now)
                    mins_from_now);
        empth_wakeup(shutdown_thread);
     } else {
-       shutdown_thread = empth_create(shutdown_sequence, 50 * 1024, 0,
+       shutdown_thread = empth_create(shutdown_sequence, 65536, 0,
                                       "shutdownSeq", NULL);
        if (!shutdown_thread) {
            shutdown_pending = 0;