aboutsummaryrefslogtreecommitdiffstats
path: root/distrib
diff options
context:
space:
mode:
authorAndrew Hsieh <andrewhsieh@google.com>2012-05-31 22:38:14 -0700
committerandroid code review <noreply-gerritcodereview@google.com>2012-05-31 22:38:15 -0700
commit3d218582b2edf2d7cdd0dca038814753efa415ff (patch)
tree6f0e66780f8364eab816fa0b3fac081462963a37 /distrib
parent4912ddd4570cef75a9434b12eff707b3c834cc05 (diff)
parent4a2c9dd7630ce51a660e1aa14e10bc6fbc4621c4 (diff)
downloadexternal_qemu-3d218582b2edf2d7cdd0dca038814753efa415ff.zip
external_qemu-3d218582b2edf2d7cdd0dca038814753efa415ff.tar.gz
external_qemu-3d218582b2edf2d7cdd0dca038814753efa415ff.tar.bz2
Merge "replace _exit() with exit()"
Diffstat (limited to 'distrib')
-rw-r--r--distrib/sdl-1.2.12/src/video/Xext/Xxf86dga/XF86DGA.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/distrib/sdl-1.2.12/src/video/Xext/Xxf86dga/XF86DGA.c b/distrib/sdl-1.2.12/src/video/Xext/Xxf86dga/XF86DGA.c
index 346e9e7..34abbb0 100644
--- a/distrib/sdl-1.2.12/src/video/Xext/Xxf86dga/XF86DGA.c
+++ b/distrib/sdl-1.2.12/src/video/Xext/Xxf86dga/XF86DGA.c
@@ -601,9 +601,9 @@ SDL_NAME(XF86DGAForkApp)(int screen)
XSync(sp->display, False);
}
if (WIFEXITED(status))
- _exit(0);
+ exit(0);
else
- _exit(-1);
+ exit(-1);
}
return pid;
}
@@ -652,7 +652,7 @@ XF86cleanup(int sig)
static char beenhere = 0;
if (beenhere)
- _exit(3);
+ exit(3);
beenhere = 1;
for (i = 0; i < numScrs; i++) {
@@ -660,7 +660,7 @@ XF86cleanup(int sig)
SDL_NAME(XF86DGADirectVideo)(sp->display, sp->screen, 0);
XSync(sp->display, False);
}
- _exit(3);
+ exit(3);
}
Bool