]> git.stg.codes - stg.git/commitdiff
Move variables declaration to the beginning of the function (old C)
authorMaxim Mamontov <faust.madf@gmail.com>
Tue, 20 Sep 2011 13:04:51 +0000 (16:04 +0300)
committerMaxim Mamontov <faust.madf@gmail.com>
Tue, 20 Sep 2011 13:04:51 +0000 (16:04 +0300)
stglibs/scriptexecuter.lib/scriptexecuter.c

index 462d310bbc57bf84307ae78b3b20ebd8b7d3b505..bf45105a8332652d31df6b850d9eefc05afe1afd 100644 (file)
@@ -46,6 +46,11 @@ void Executer(int msgID, pid_t pid, char * procName)
 void Executer(int msgID, pid_t pid)
 #endif
 {
+int ret;
+struct SCRIPT_DATA sd;
+struct sigaction newsa, oldsa;
+sigset_t sigmask;
+
 msgid = msgID;
 if (pid)
     return;
@@ -58,9 +63,6 @@ strcpy(procName, "stg-exec");
 setproctitle("stg-exec");
 #endif
 
-struct sigaction newsa, oldsa;
-sigset_t sigmask;
-
 sigemptyset(&sigmask);
 sigaddset(&sigmask, SIGTERM);
 newsa.sa_handler = SIG_IGN;
@@ -89,10 +91,6 @@ newsa.sa_mask = sigmask;
 newsa.sa_flags = 0;
 sigaction(SIGUSR1, &newsa, &oldsa);
 
-int ret;
-
-struct SCRIPT_DATA sd;
-
 while (nonstop)
     {
     sd.mtype = 1;
@@ -103,7 +101,7 @@ while (nonstop)
         usleep(20000);
         continue;
         }
-    int ret = system(sd.script);
+    ret = system(sd.script);
     if (ret == -1)
         {
         // Fork failed