service: reorder function to avoid forward declaration
authorFelix Fietkau <nbd@openwrt.org>
Sun, 14 Jun 2015 16:31:38 +0000 (18:31 +0200)
committerFelix Fietkau <nbd@openwrt.org>
Sun, 14 Jun 2015 16:31:38 +0000 (18:31 +0200)
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
service/instance.c

index 29fb834..35b2def 100644 (file)
@@ -295,7 +295,21 @@ instance_run(struct service_instance *in, int _stdout, int _stderr)
        exit(127);
 }
 
-static void instance_free_stdio(struct service_instance *in);
+static void
+instance_free_stdio(struct service_instance *in)
+{
+       if (in->_stdout.fd.fd > -1) {
+               ustream_free(&in->_stdout.stream);
+               close(in->_stdout.fd.fd);
+               in->_stdout.fd.fd = -1;
+       }
+
+       if (in->_stderr.fd.fd > -1) {
+               ustream_free(&in->_stderr.stream);
+               close(in->_stderr.fd.fd);
+               in->_stderr.fd.fd = -1;
+       }
+}
 
 void
 instance_start(struct service_instance *in)
@@ -823,22 +837,6 @@ instance_update(struct service_instance *in, struct service_instance *in_new)
        return true;
 }
 
-static void
-instance_free_stdio(struct service_instance *in)
-{
-       if (in->_stdout.fd.fd > -1) {
-               ustream_free(&in->_stdout.stream);
-               close(in->_stdout.fd.fd);
-               in->_stdout.fd.fd = -1;
-       }
-
-       if (in->_stderr.fd.fd > -1) {
-               ustream_free(&in->_stderr.stream);
-               close(in->_stderr.fd.fd);
-               in->_stderr.fd.fd = -1;
-       }
-}
-
 void
 instance_free(struct service_instance *in)
 {