summaryrefslogtreecommitdiff
path: root/librt/spawn.c
diff options
context:
space:
mode:
Diffstat (limited to 'librt/spawn.c')
-rw-r--r--librt/spawn.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/librt/spawn.c b/librt/spawn.c
index 0877f6f8e..07d40193c 100644
--- a/librt/spawn.c
+++ b/librt/spawn.c
@@ -120,8 +120,13 @@ __spawni(pid_t *pid, const char *file,
pid_t new_pid;
if (is_vfork_safe(flags) && !fa)
new_pid = vfork();
- else
+ else {
+#ifdef __ARCH_USE_MMU__
new_pid = fork();
+#else
+ return ENOSYS;
+#endif
+ }
if (new_pid) {
if (new_pid < 0)