Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
15614e61
Commit
15614e61
authored
Apr 10, 1996
by
Richard M. Stallman
Browse files
[DJGPP v2] (etext, start): Declared.
(wait_for_termination) [DJGPP v2]: Just exit.
parent
7a05f3c7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
src/sysdep.c
src/sysdep.c
+10
-0
No files found.
src/sysdep.c
View file @
15614e61
...
...
@@ -86,6 +86,11 @@ extern int h_errno;
#include "dosfns.h"
#include "msdos.h"
#include <sys/param.h>
#if __DJGPP__ > 1
extern
int
etext
;
extern
unsigned
start
__asm__
(
"start"
);
#endif
#endif
extern
int
errno
;
...
...
@@ -454,6 +459,9 @@ wait_for_termination (pid)
#endif
/* not BSD, and not HPUX version >= 6 */
#endif
/* not VMS */
#else
/* not subprocesses */
#if __DJGPP__ > 1
break
;
#else
/* not __DJGPP__ > 1 */
#ifndef BSD4_1
if
(
kill
(
pid
,
0
)
<
0
)
break
;
...
...
@@ -464,6 +472,7 @@ wait_for_termination (pid)
if
(
status
==
pid
||
status
==
-
1
)
break
;
#endif
/* BSD4_1 */
#endif
/* not __DJGPP__ > 1*/
#endif
/* not subprocesses */
}
}
...
...
@@ -725,6 +734,7 @@ sys_subshell ()
#ifdef WINDOWSNT
pid
=
-
1
;
#else
/* not WINDOWSNT */
#ifdef MSDOS
pid
=
0
;
#else
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment