]> git.sur5r.net Git - cc65/blob - src/cl65/spawn.c
Add #pragma charmap()
[cc65] / src / cl65 / spawn.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                spawn.c                                    */
4 /*                                                                           */
5 /*                    Execute other external programs                        */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 1999     Ullrich von Bassewitz                                        */
10 /*              Wacholderweg 14                                              */
11 /*              D-70597 Stuttgart                                            */
12 /* EMail:       uz@musoftware.de                                             */
13 /*                                                                           */
14 /*                                                                           */
15 /* This software is provided 'as-is', without any expressed or implied       */
16 /* warranty.  In no event will the authors be held liable for any damages    */
17 /* arising from the use of this software.                                    */
18 /*                                                                           */
19 /* Permission is granted to anyone to use this software for any purpose,     */
20 /* including commercial applications, and to alter it and redistribute it    */
21 /* freely, subject to the following restrictions:                            */
22 /*                                                                           */
23 /* 1. The origin of this software must not be misrepresented; you must not   */
24 /*    claim that you wrote the original software. If you use this software   */
25 /*    in a product, an acknowledgment in the product documentation would be  */
26 /*    appreciated but is not required.                                       */
27 /* 2. Altered source versions must be plainly marked as such, and must not   */
28 /*    be misrepresented as being the original software.                      */
29 /* 3. This notice may not be removed or altered from any source              */
30 /*    distribution.                                                          */
31 /*                                                                           */
32 /*****************************************************************************/
33
34
35
36 #include <unistd.h>
37 #include <string.h>
38 #include <errno.h>
39 #include <sys/types.h>
40 #include <sys/wait.h>
41           
42 /* common */
43 #include "attrib.h"
44
45 /* cl65 */
46 #include "error.h"
47
48
49
50 /*****************************************************************************/
51 /*                                   Code                                    */
52 /*****************************************************************************/
53
54
55
56 int spawnvp (int Mode attribute ((unused)), const char* File, char* const argv [])
57 /* Execute the given program searching and wait til it terminates. The Mode
58  * argument is ignored (compatibility only). The result of the function is
59  * the return code of the program. The function will terminate the program
60  * on errors.
61  */
62 {
63     int Status = 0;
64
65     /* Fork */
66     int pid = fork ();
67     if (pid < 0) {
68
69         /* Error forking */
70         Error ("Cannot fork: %s", strerror (errno));
71
72     } else if (pid == 0) {
73
74         /* The son - exec the program */
75         if (execvp (File, argv) < 0) {
76             Error ("Cannot exec `%s': %s", File, strerror (errno));
77         }
78
79     } else {
80
81         /* The father: Wait for the subprocess to terminate */
82         if (waitpid (pid, &Status, 0) < 0) {
83             Error ("Failure waiting for subprocess: %s", strerror (errno));
84         }
85
86         /* Examine the child status */
87         if (!WIFEXITED (Status)) {
88             Error ("Subprocess `%s' aborted by signal %d", File, WTERMSIG (Status));
89         }
90     }
91
92     /* Only the father goes here, we place a return here regardless of that
93      * to avoid compiler warnings.
94      */
95     return WEXITSTATUS (Status);
96 }
97
98
99