c5d972
commit 2a973ab7f1a6f6cd9be1c7257fd7b5d331515eab
c5d972
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
c5d972
Date:   Wed Sep 12 10:30:46 2018 -0300
c5d972
c5d972
    posix: Add internal symbols for posix_spawn interface
c5d972
    
c5d972
    This patch adds internal hidden definition for mostly of the posix_spawn
c5d972
    function so it can be used internally on both popen and system
c5d972
    implementations.
c5d972
    
c5d972
    Checked on x86_64-linux-gnu.
c5d972
    
c5d972
            * include/spawn.h (__posix_spawn, posix_spawn_file_actions_addclose,
c5d972
            __posix_spawn_file_actions_adddup2, __posix_spawn_file_actions_destroy,
c5d972
            __posix_spawn_file_actions_init, __posix_spawnattr_init,
c5d972
            __posix_spawnattr_destroy, __posix_spawnattr_setflags,
c5d972
            __posix_spawnattr_setsigdefault, __posix_spawnattr_setsigmask): New
c5d972
            prototype.
c5d972
            * posix/spawn.c (__posix_spawn): Add libc_hidden_def.
c5d972
            * posix/spawn_faction_addclose.c
c5d972
            (__posix_spawn_file_actions_addclose): Add hidden definition.
c5d972
            * posix/spawn_faction_adddup2.c
c5d972
            (__posix_spawn_file_actions_adddup2): Likewise.
c5d972
            * posix/spawn_faction_destroy.c
c5d972
            (__posix_spawn_file_actions_destroy): Likewise.
c5d972
            * posix/spawn_faction_init.c (__posix_spawn_file_actions_init):
c5d972
            Likewise.
c5d972
            * posix/spawnattr_destroy.c (__posix_spawnattr_destroy): Likewise.
c5d972
            * posix/spawnattr_init.c (__posix_spawnattr_init): Likewise.
c5d972
            * posix/spawnattr_setdefault.c (__posix_spawnattr_setsigdefault):
c5d972
            Likewise.
c5d972
            * posix/spawnattr_setflags.c (__posix_spawnattr_setflags): Likewise.
c5d972
            * posix/spawnattr_setsigmask.c (__posix_spawnattr_setsigmask):
c5d972
            Likewise.
c5d972
c5d972
diff --git a/include/spawn.h b/include/spawn.h
c5d972
index a6c7a8adc361927e..7fdd965bd780f8de 100644
c5d972
--- a/include/spawn.h
c5d972
+++ b/include/spawn.h
c5d972
@@ -1 +1,36 @@
c5d972
+#ifndef _SPAWN_H
c5d972
 #include <posix/spawn.h>
c5d972
+
c5d972
+# ifndef _ISOMAC
c5d972
+__typeof (posix_spawn) __posix_spawn;
c5d972
+libc_hidden_proto (__posix_spawn)
c5d972
+
c5d972
+__typeof (posix_spawn_file_actions_addclose)
c5d972
+  __posix_spawn_file_actions_addclose attribute_hidden;
c5d972
+
c5d972
+__typeof (posix_spawn_file_actions_adddup2)
c5d972
+  __posix_spawn_file_actions_adddup2 attribute_hidden;
c5d972
+
c5d972
+__typeof (posix_spawn_file_actions_destroy)
c5d972
+  __posix_spawn_file_actions_destroy attribute_hidden;
c5d972
+
c5d972
+__typeof (posix_spawn_file_actions_init) __posix_spawn_file_actions_init
c5d972
+  attribute_hidden;
c5d972
+
c5d972
+__typeof (posix_spawnattr_init) __posix_spawnattr_init
c5d972
+  attribute_hidden;
c5d972
+
c5d972
+__typeof (posix_spawnattr_destroy) __posix_spawnattr_destroy
c5d972
+  attribute_hidden;
c5d972
+
c5d972
+__typeof (posix_spawnattr_setflags) __posix_spawnattr_setflags
c5d972
+  attribute_hidden;
c5d972
+
c5d972
+__typeof (posix_spawnattr_setsigdefault) __posix_spawnattr_setsigdefault
c5d972
+  attribute_hidden;
c5d972
+
c5d972
+__typeof (posix_spawnattr_setsigmask) __posix_spawnattr_setsigmask
c5d972
+  attribute_hidden;
c5d972
+
c5d972
+# endif /* !_ISOMAC  */
c5d972
+#endif /* spawn.h  */
c5d972
diff --git a/posix/spawn.c b/posix/spawn.c
c5d972
index 51f67b2755bd4949..a82f1c84e299f018 100644
c5d972
--- a/posix/spawn.c
c5d972
+++ b/posix/spawn.c
c5d972
@@ -30,6 +30,7 @@ __posix_spawn (pid_t *pid, const char *path,
c5d972
   return __spawni (pid, path, file_actions, attrp, argv, envp, 0);
c5d972
 }
c5d972
 versioned_symbol (libc, __posix_spawn, posix_spawn, GLIBC_2_15);
c5d972
+libc_hidden_def (__posix_spawn)
c5d972
 
c5d972
 
c5d972
 #if SHLIB_COMPAT (libc, GLIBC_2_2, GLIBC_2_15)
c5d972
diff --git a/posix/spawn_faction_addclose.c b/posix/spawn_faction_addclose.c
c5d972
index 21081e19b55db44c..e1fafe438cf15c91 100644
c5d972
--- a/posix/spawn_faction_addclose.c
c5d972
+++ b/posix/spawn_faction_addclose.c
c5d972
@@ -24,8 +24,8 @@
c5d972
 /* Add an action to FILE-ACTIONS which tells the implementation to call
c5d972
    `close' for the given file descriptor during the `spawn' call.  */
c5d972
 int
c5d972
-posix_spawn_file_actions_addclose (posix_spawn_file_actions_t *file_actions,
c5d972
-				   int fd)
c5d972
+__posix_spawn_file_actions_addclose (posix_spawn_file_actions_t *file_actions,
c5d972
+				     int fd)
c5d972
 {
c5d972
   struct __spawn_action *rec;
c5d972
 
c5d972
@@ -48,3 +48,5 @@ posix_spawn_file_actions_addclose (posix_spawn_file_actions_t *file_actions,
c5d972
 
c5d972
   return 0;
c5d972
 }
c5d972
+weak_alias (__posix_spawn_file_actions_addclose,
c5d972
+	    posix_spawn_file_actions_addclose)
c5d972
diff --git a/posix/spawn_faction_adddup2.c b/posix/spawn_faction_adddup2.c
c5d972
index 363bc29ae502bd60..371b1de3e6f1979a 100644
c5d972
--- a/posix/spawn_faction_adddup2.c
c5d972
+++ b/posix/spawn_faction_adddup2.c
c5d972
@@ -24,8 +24,8 @@
c5d972
 /* Add an action to FILE-ACTIONS which tells the implementation to call
c5d972
    `dup2' for the given file descriptors during the `spawn' call.  */
c5d972
 int
c5d972
-posix_spawn_file_actions_adddup2 (posix_spawn_file_actions_t *file_actions,
c5d972
-				  int fd, int newfd)
c5d972
+__posix_spawn_file_actions_adddup2 (posix_spawn_file_actions_t *file_actions,
c5d972
+				    int fd, int newfd)
c5d972
 {
c5d972
   struct __spawn_action *rec;
c5d972
 
c5d972
@@ -49,3 +49,5 @@ posix_spawn_file_actions_adddup2 (posix_spawn_file_actions_t *file_actions,
c5d972
 
c5d972
   return 0;
c5d972
 }
c5d972
+weak_alias (__posix_spawn_file_actions_adddup2,
c5d972
+	    posix_spawn_file_actions_adddup2)
c5d972
diff --git a/posix/spawn_faction_destroy.c b/posix/spawn_faction_destroy.c
c5d972
index 46061ee3473d4475..2a2de4e41d6bd6d0 100644
c5d972
--- a/posix/spawn_faction_destroy.c
c5d972
+++ b/posix/spawn_faction_destroy.c
c5d972
@@ -22,7 +22,7 @@
c5d972
 
c5d972
 /* Deallocate the file actions.  */
c5d972
 int
c5d972
-posix_spawn_file_actions_destroy (posix_spawn_file_actions_t *file_actions)
c5d972
+__posix_spawn_file_actions_destroy (posix_spawn_file_actions_t *file_actions)
c5d972
 {
c5d972
   /* Free the paths in the open actions.  */
c5d972
   for (int i = 0; i < file_actions->__used; ++i)
c5d972
@@ -44,3 +44,5 @@ posix_spawn_file_actions_destroy (posix_spawn_file_actions_t *file_actions)
c5d972
   free (file_actions->__actions);
c5d972
   return 0;
c5d972
 }
c5d972
+weak_alias (__posix_spawn_file_actions_destroy,
c5d972
+	    posix_spawn_file_actions_destroy)
c5d972
diff --git a/posix/spawn_faction_init.c b/posix/spawn_faction_init.c
c5d972
index ddb42e6a77ba41ec..98432067c645021e 100644
c5d972
--- a/posix/spawn_faction_init.c
c5d972
+++ b/posix/spawn_faction_init.c
c5d972
@@ -45,9 +45,10 @@ __posix_spawn_file_actions_realloc (posix_spawn_file_actions_t *file_actions)
c5d972
 
c5d972
 /* Initialize data structure for file attribute for `spawn' call.  */
c5d972
 int
c5d972
-posix_spawn_file_actions_init (posix_spawn_file_actions_t *file_actions)
c5d972
+__posix_spawn_file_actions_init (posix_spawn_file_actions_t *file_actions)
c5d972
 {
c5d972
   /* Simply clear all the elements.  */
c5d972
   memset (file_actions, '\0', sizeof (*file_actions));
c5d972
   return 0;
c5d972
 }
c5d972
+weak_alias (__posix_spawn_file_actions_init, posix_spawn_file_actions_init)
c5d972
diff --git a/posix/spawnattr_destroy.c b/posix/spawnattr_destroy.c
c5d972
index 603e00fffefae2bf..043386778588913a 100644
c5d972
--- a/posix/spawnattr_destroy.c
c5d972
+++ b/posix/spawnattr_destroy.c
c5d972
@@ -19,8 +19,9 @@
c5d972
 
c5d972
 /* Initialize data structure for file attribute for `spawn' call.  */
c5d972
 int
c5d972
-posix_spawnattr_destroy (posix_spawnattr_t *attr)
c5d972
+__posix_spawnattr_destroy (posix_spawnattr_t *attr)
c5d972
 {
c5d972
   /* Nothing to do in the moment.  */
c5d972
   return 0;
c5d972
 }
c5d972
+weak_alias (__posix_spawnattr_destroy, posix_spawnattr_destroy)
c5d972
diff --git a/posix/spawnattr_init.c b/posix/spawnattr_init.c
c5d972
index bab464e62bdf7889..4e1218ab44e3f779 100644
c5d972
--- a/posix/spawnattr_init.c
c5d972
+++ b/posix/spawnattr_init.c
c5d972
@@ -20,7 +20,7 @@
c5d972
 
c5d972
 /* Initialize data structure for file attribute for `spawn' call.  */
c5d972
 int
c5d972
-posix_spawnattr_init (posix_spawnattr_t *attr)
c5d972
+__posix_spawnattr_init (posix_spawnattr_t *attr)
c5d972
 {
c5d972
   /* All elements have to be initialized to the default values which
c5d972
      is generally zero.  */
c5d972
@@ -28,3 +28,4 @@ posix_spawnattr_init (posix_spawnattr_t *attr)
c5d972
 
c5d972
   return 0;
c5d972
 }
c5d972
+weak_alias (__posix_spawnattr_init, posix_spawnattr_init)
c5d972
diff --git a/posix/spawnattr_setdefault.c b/posix/spawnattr_setdefault.c
c5d972
index c77cda59be3dda20..174bcfa423dc5666 100644
c5d972
--- a/posix/spawnattr_setdefault.c
c5d972
+++ b/posix/spawnattr_setdefault.c
c5d972
@@ -20,11 +20,12 @@
c5d972
 
c5d972
 /* Set signal mask for signals with default handling in ATTR to SIGDEFAULT.  */
c5d972
 int
c5d972
-posix_spawnattr_setsigdefault (posix_spawnattr_t *attr,
c5d972
-			       const sigset_t *sigdefault)
c5d972
+__posix_spawnattr_setsigdefault (posix_spawnattr_t *attr,
c5d972
+				 const sigset_t *sigdefault)
c5d972
 {
c5d972
   /* Copy the sigset_t data to the user buffer.  */
c5d972
   memcpy (&attr->__sd, sigdefault, sizeof (sigset_t));
c5d972
 
c5d972
   return 0;
c5d972
 }
c5d972
+weak_alias (__posix_spawnattr_setsigdefault, posix_spawnattr_setsigdefault)
c5d972
diff --git a/posix/spawnattr_setflags.c b/posix/spawnattr_setflags.c
c5d972
index cf9a60181dc91ccd..0a42e94770224a94 100644
c5d972
--- a/posix/spawnattr_setflags.c
c5d972
+++ b/posix/spawnattr_setflags.c
c5d972
@@ -30,7 +30,7 @@
c5d972
 
c5d972
 /* Store flags in the attribute structure.  */
c5d972
 int
c5d972
-posix_spawnattr_setflags (posix_spawnattr_t *attr, short int flags)
c5d972
+__posix_spawnattr_setflags (posix_spawnattr_t *attr, short int flags)
c5d972
 {
c5d972
   /* Check no invalid bits are set.  */
c5d972
   if (flags & ~ALL_FLAGS)
c5d972
@@ -41,3 +41,4 @@ posix_spawnattr_setflags (posix_spawnattr_t *attr, short int flags)
c5d972
 
c5d972
   return 0;
c5d972
 }
c5d972
+weak_alias (__posix_spawnattr_setflags, posix_spawnattr_setflags)
c5d972
diff --git a/posix/spawnattr_setsigmask.c b/posix/spawnattr_setsigmask.c
c5d972
index 7ae81ad47025db6f..12c0111af441dd13 100644
c5d972
--- a/posix/spawnattr_setsigmask.c
c5d972
+++ b/posix/spawnattr_setsigmask.c
c5d972
@@ -20,7 +20,7 @@
c5d972
 
c5d972
 /* Set signal mask for the new process in ATTR to SIGMASK.  */
c5d972
 int
c5d972
-posix_spawnattr_setsigmask (posix_spawnattr_t *attr,
c5d972
+__posix_spawnattr_setsigmask (posix_spawnattr_t *attr,
c5d972
 			    const sigset_t *sigmask)
c5d972
 {
c5d972
   /* Copy the sigset_t data to the user buffer.  */
c5d972
@@ -28,3 +28,4 @@ posix_spawnattr_setsigmask (posix_spawnattr_t *attr,
c5d972
 
c5d972
   return 0;
c5d972
 }
c5d972
+weak_alias (__posix_spawnattr_setsigmask, posix_spawnattr_setsigmask)