diff options
author | Ulrich Drepper <drepper@redhat.com> | 2006-06-04 21:28:57 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2006-06-04 21:28:57 +0000 |
commit | 7231452e5cffcd506f7e7402484708740bc07c18 (patch) | |
tree | 565d88e223f2c388bf5bbbb59eba225fc8f05cd0 /sysdeps | |
parent | 9009e8f81439ca21b9d54d15f619c9d544c29647 (diff) | |
download | glibc-7231452e5cffcd506f7e7402484708740bc07c18.zip glibc-7231452e5cffcd506f7e7402484708740bc07c18.tar.gz glibc-7231452e5cffcd506f7e7402484708740bc07c18.tar.bz2 |
* sysdeps/posix/spawni.c (__spawni): Use non-cancelable interfaces.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/posix/spawni.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/sysdeps/posix/spawni.c b/sysdeps/posix/spawni.c index 27699f4..d6a866a 100644 --- a/sysdeps/posix/spawni.c +++ b/sysdeps/posix/spawni.c @@ -1,5 +1,5 @@ /* Guts of POSIX spawn interface. Generic POSIX.1 version. - Copyright (C) 2000,2001,2002,2003,2004,2005 Free Software Foundation, Inc. + Copyright (C) 2000-2005, 2006 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -177,9 +177,10 @@ __spawni (pid_t *pid, const char *file, case spawn_do_open: { - int new_fd = __open64 (action->action.open_action.path, - action->action.open_action.oflag, - action->action.open_action.mode); + int new_fd = open_not_cancel (action->action.open_action.path, + action->action.open_action.oflag + | O_LARGEFILE, + action->action.open_action.mode); if (new_fd == -1) /* The `open' call failed. */ @@ -193,7 +194,7 @@ __spawni (pid_t *pid, const char *file, /* The `dup2' call failed. */ _exit (SPAWN_ERROR); - if (__close (new_fd) != 0) + if (close_not_cancel (new_fd) != 0) /* The `close' call failed. */ _exit (SPAWN_ERROR); } |