[git commit master] make the sem_open changes actually compile

Austin Foxley austinf at cetoncorp.com
Fri Apr 23 14:31:55 UTC 2010


commit: http://git.uclibc.org/uClibc/commit/?id=75273b98a91c15baa032ce920ae9c44605769679
branch: http://git.uclibc.org/uClibc/commit/?id=refs/heads/master

__gen_tempname now needs to not be hidden so libpthread can get at it

Signed-off-by: Austin Foxley <austinf at cetoncorp.com>
---
 libc/misc/internals/tempname.c |    2 +-
 libc/misc/internals/tempname.h |    2 +-
 libpthread/nptl/sem_open.c     |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/libc/misc/internals/tempname.c b/libc/misc/internals/tempname.c
index 4abd3c6..4145c94 100644
--- a/libc/misc/internals/tempname.c
+++ b/libc/misc/internals/tempname.c
@@ -175,7 +175,7 @@ static void brain_damaged_fillrand(unsigned char *buf, unsigned int len)
    __GT_DIR:            create a directory with given mode.
 
 */
-int attribute_hidden __gen_tempname (char *tmpl, int kind, mode_t mode)
+int __gen_tempname (char *tmpl, int kind, mode_t mode)
 {
     char *XXXXXX;
     unsigned int i;
diff --git a/libc/misc/internals/tempname.h b/libc/misc/internals/tempname.h
index e75b632..017dc51 100644
--- a/libc/misc/internals/tempname.h
+++ b/libc/misc/internals/tempname.h
@@ -10,7 +10,7 @@ extern int ___path_search (char *tmpl, size_t tmpl_len, const char *dir,
 	        const char *pfx /*, int try_tmpdir */) attribute_hidden;
 #define __path_search(tmpl, tmpl_len, dir, pfx, try_tmpdir) ___path_search(tmpl, tmpl_len, dir, pfx)
 
-extern int __gen_tempname (char *__tmpl, int __kind, mode_t mode) attribute_hidden;
+extern int __gen_tempname (char *__tmpl, int __kind, mode_t mode);
 
 /* The __kind argument to __gen_tempname may be one of: */
 #define __GT_FILE     0       /* create a file */
diff --git a/libpthread/nptl/sem_open.c b/libpthread/nptl/sem_open.c
index b7279fa..25389f0 100644
--- a/libpthread/nptl/sem_open.c
+++ b/libpthread/nptl/sem_open.c
@@ -34,7 +34,7 @@
 #include <sys/statfs.h>
 #include <linux_fsinfo.h>
 #include "semaphoreP.h"
-#include "../../misc/internals/tempname.h"
+#include "../../libc/misc/internals/tempname.h"
 
 
 /* Compatibility defines. */
-- 
1.6.3.3



More information about the uClibc-cvs mailing list