Return-Path: Delivered-To: apmail-apr-bugs-archive@www.apache.org Received: (qmail 16195 invoked from network); 29 Jul 2007 06:59:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 29 Jul 2007 06:59:02 -0000 Received: (qmail 21462 invoked by uid 500); 29 Jul 2007 06:59:02 -0000 Delivered-To: apmail-apr-bugs-archive@apr.apache.org Received: (qmail 21431 invoked by uid 500); 29 Jul 2007 06:59:02 -0000 Mailing-List: contact bugs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@apr.apache.org Delivered-To: mailing list bugs@apr.apache.org Received: (qmail 21419 invoked by uid 99); 29 Jul 2007 06:59:02 -0000 Received: from Unknown (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 28 Jul 2007 23:59:02 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 29 Jul 2007 06:58:47 +0000 Received: by brutus.apache.org (Postfix, from userid 33) id C35447141F6; Sat, 28 Jul 2007 23:58:26 -0700 (PDT) From: bugzilla@apache.org To: bugs@apr.apache.org Subject: DO NOT REPLY [Bug 42992] - test case for apr_atomic_casptr uses incompatible pointer type In-Reply-To: X-Bugzilla-Reason: AssignedTo Message-Id: <20070729065826.C35447141F6@brutus.apache.org> Date: Sat, 28 Jul 2007 23:58:26 -0700 (PDT) X-Virus-Checked: Checked by ClamAV on apache.org DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG� RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND� INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=42992 carenas@sajinet.com.pe changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |NEW ------- Additional Comments From carenas@sajinet.com.pe 2007-07-28 23:58 ------- my comment about a "dereference for void *" was obviously incorrect, what I meant to refer to was the use of the "address of" operator for casptr as the first parameter of apr_atomic_casptr as shown by the following excerpt from testatomic.c's check_basic_atomics. void *casptr; casptr = NULL; oldptr = apr_atomic_casptr(&casptr, &object1, 0); the definition (from include/apr_atomic.h) for apr_atomic_casptr says : void *apr_atomic_casptr(volatile void **mem, void *with, const void *cmp); -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: bugs-unsubscribe@apr.apache.org For additional commands, e-mail: bugs-help@apr.apache.org