Return-Path: X-Original-To: apmail-hadoop-hdfs-dev-archive@minotaur.apache.org Delivered-To: apmail-hadoop-hdfs-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 295E1C5DD for ; Mon, 30 Jul 2012 23:44:38 +0000 (UTC) Received: (qmail 54363 invoked by uid 500); 30 Jul 2012 23:44:36 -0000 Delivered-To: apmail-hadoop-hdfs-dev-archive@hadoop.apache.org Received: (qmail 54240 invoked by uid 500); 30 Jul 2012 23:44:36 -0000 Mailing-List: contact hdfs-dev-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hdfs-dev@hadoop.apache.org Delivered-To: mailing list hdfs-dev@hadoop.apache.org Received: (qmail 54122 invoked by uid 99); 30 Jul 2012 23:44:36 -0000 Received: from issues-vm.apache.org (HELO issues-vm) (140.211.11.160) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 30 Jul 2012 23:44:36 +0000 Received: from isssues-vm.apache.org (localhost [127.0.0.1]) by issues-vm (Postfix) with ESMTP id A59C0142851 for ; Mon, 30 Jul 2012 23:44:36 +0000 (UTC) Date: Mon, 30 Jul 2012 23:44:36 +0000 (UTC) From: "Colin Patrick McCabe (JIRA)" To: hdfs-dev@hadoop.apache.org Message-ID: <562883718.119023.1343691876680.JavaMail.jiratomcat@issues-vm> Subject: [jira] [Created] (HDFS-3742) libhdfs symbol visibility issues MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Colin Patrick McCabe created HDFS-3742: ------------------------------------------ Summary: libhdfs symbol visibility issues Key: HDFS-3742 URL: https://issues.apache.org/jira/browse/HDFS-3742 Project: Hadoop HDFS Issue Type: Bug Affects Versions: 2.2.0-alpha Reporter: Colin Patrick McCabe Assignee: Colin Patrick McCabe Priority: Minor libhdfs symbols should be hidden unless they're part of the API. If we don't hide symbols, they could conflict with symbols in a library user's program. This can be accomplished with __attribute__((visibility)) like this: {code} void __attribute__((visibility("hidden"))) bar(int i); {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira