]> git.proxmox.com Git - mirror_qemu.git/commitdiff
Make os_change_process_uid and os_change_root os-posix.c local
authorJes Sorensen <Jes.Sorensen@redhat.com>
Thu, 10 Jun 2010 09:42:29 +0000 (11:42 +0200)
committerBlue Swirl <blauwirbel@gmail.com>
Sat, 12 Jun 2010 05:49:15 +0000 (08:49 +0300)
os_change_process_uid() and os_change_root() are now only called
from os-posix.c, so no need to keep win32 stubs for them.

Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Acked-by: Juan Quintela <quintela@redhat.com>
Acked-by: Richard Henderson <rth@redhat.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
os-posix.c
qemu-os-posix.h
qemu-os-win32.h

index 1672e0655038bcff69d8274762ef015b15e0cd18..3a96c91ca8d3494218e45da439cb0099f1b490d3 100644 (file)
@@ -169,7 +169,7 @@ void os_parse_cmd_args(int index, const char *optarg)
     return;
 }
 
-void os_change_process_uid(void)
+static void change_process_uid(void)
 {
     if (user_pwd) {
         if (setgid(user_pwd->pw_gid) < 0) {
@@ -187,7 +187,7 @@ void os_change_process_uid(void)
     }
 }
 
-void os_change_root(void)
+static void change_root(void)
 {
     if (chroot_dir) {
         if (chroot(chroot_dir) < 0) {
@@ -276,8 +276,8 @@ void os_setup_post(void)
            exit(1);
     }
 
-    os_change_root();
-    os_change_process_uid();
+    change_root();
+    change_process_uid();
 
     if (daemonize) {
         dup2(fd, 0);
index 9b07660de7fd73daef1c774236da36e179e81906..8be583da681eb2479da2bbc07e3df3108226b5ad 100644 (file)
@@ -31,8 +31,6 @@ static inline void os_host_main_loop_wait(int *timeout)
 }
 
 void os_setup_signal_handling(void);
-void os_change_process_uid(void);
-void os_change_root(void);
 void os_daemonize(void);
 void os_setup_post(void);
 
index c4aa84a5f26258f758c0b915c95ea324db4d7d40..39df333cf4094772a710bd0ecf291f55cd07ed19 100644 (file)
@@ -43,8 +43,6 @@ void qemu_del_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque);
 void os_host_main_loop_wait(int *timeout);
 
 static inline void os_setup_signal_handling(void) {}
-static inline void os_change_process_uid(void) {}
-static inline void os_change_root(void) {}
 static inline void os_daemonize(void) {}
 static inline void os_setup_post(void) {}