syscall/: Adapt the conditional compile logic on when to include the vfork() syscall proxy and stub to the logic used for vfork() itself.

This commit is contained in:
Michael Jung
2019-07-10 07:25:00 -06:00
committed by Gregory Nutt
parent ffb4f00da9
commit 6aaea06da9
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -141,7 +141,7 @@
/* The following can be individually enabled */
#ifdef CONFIG_ARCH_HAVE_VFORK
#if defined(CONFIG_SCHED_WAITPID) && defined(CONFIG_ARCH_HAVE_VFORK)
# define SYS_vfork __SYS_vfork
# define __SYS_atexit (__SYS_vfork + 1)
#else