Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id F1FC17FB5 for ; Wed, 26 Oct 2011 13:30:42 +0000 (UTC) Received: (qmail 7853 invoked by uid 500); 26 Oct 2011 13:30:42 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 7733 invoked by uid 500); 26 Oct 2011 13:30:42 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 7726 invoked by uid 99); 26 Oct 2011 13:30:42 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Oct 2011 13:30:42 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Oct 2011 13:30:41 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 68F7D23889DA for ; Wed, 26 Oct 2011 13:30:21 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1189203 - in /commons/sandbox/runtime/trunk/src/main/native/os/linux/lxc: api.c init.c lxc.h lxcpriv.h Date: Wed, 26 Oct 2011 13:30:21 -0000 To: commits@commons.apache.org From: mturk@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111026133021.68F7D23889DA@eris.apache.org> Author: mturk Date: Wed Oct 26 13:30:20 2011 New Revision: 1189203 URL: http://svn.apache.org/viewvc?rev=1189203&view=rev Log: Use different name for private header Added: commons/sandbox/runtime/trunk/src/main/native/os/linux/lxc/lxcpriv.h - copied, changed from r1189200, commons/sandbox/runtime/trunk/src/main/native/os/linux/lxc/lxc.h Removed: commons/sandbox/runtime/trunk/src/main/native/os/linux/lxc/lxc.h Modified: commons/sandbox/runtime/trunk/src/main/native/os/linux/lxc/api.c commons/sandbox/runtime/trunk/src/main/native/os/linux/lxc/init.c Modified: commons/sandbox/runtime/trunk/src/main/native/os/linux/lxc/api.c URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/os/linux/lxc/api.c?rev=1189203&r1=1189202&r2=1189203&view=diff ============================================================================== --- commons/sandbox/runtime/trunk/src/main/native/os/linux/lxc/api.c (original) +++ commons/sandbox/runtime/trunk/src/main/native/os/linux/lxc/api.c Wed Oct 26 13:30:20 2011 @@ -25,3 +25,4 @@ #if !HAVE_LXC #error "Cannot compile this file without HAVE_LXC defined" #endif +#include "lxcpriv.h" Modified: commons/sandbox/runtime/trunk/src/main/native/os/linux/lxc/init.c URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/os/linux/lxc/init.c?rev=1189203&r1=1189202&r2=1189203&view=diff ============================================================================== --- commons/sandbox/runtime/trunk/src/main/native/os/linux/lxc/init.c (original) +++ commons/sandbox/runtime/trunk/src/main/native/os/linux/lxc/init.c Wed Oct 26 13:30:20 2011 @@ -25,3 +25,5 @@ #if !HAVE_LXC #error "Cannot compile this file without HAVE_LXC defined" #endif + +#include "lxcpriv.h" Copied: commons/sandbox/runtime/trunk/src/main/native/os/linux/lxc/lxcpriv.h (from r1189200, commons/sandbox/runtime/trunk/src/main/native/os/linux/lxc/lxc.h) URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/os/linux/lxc/lxcpriv.h?p2=commons/sandbox/runtime/trunk/src/main/native/os/linux/lxc/lxcpriv.h&p1=commons/sandbox/runtime/trunk/src/main/native/os/linux/lxc/lxc.h&r1=1189200&r2=1189203&rev=1189203&view=diff ============================================================================== --- commons/sandbox/runtime/trunk/src/main/native/os/linux/lxc/lxc.h (original) +++ commons/sandbox/runtime/trunk/src/main/native/os/linux/lxc/lxcpriv.h Wed Oct 26 13:30:20 2011 @@ -14,8 +14,8 @@ * limitations under the License. */ -#ifndef _ACR_LXC_H_ -#define _ACR_LXC_H_ +#ifndef _LXCPRIV_H_ +#define _LXCPRIV_H_ #include "acr/stdtypes.h" #include "acr/callback.h" @@ -28,4 +28,4 @@ #endif -#endif /* _ACR_LCX_H_ */ +#endif /* _LCXPRIV_H_ */