Return-Path: Delivered-To: apmail-stdcxx-dev-archive@www.apache.org Received: (qmail 26847 invoked from network); 14 May 2008 17:18:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 14 May 2008 17:18:50 -0000 Received: (qmail 83964 invoked by uid 500); 14 May 2008 17:18:51 -0000 Delivered-To: apmail-stdcxx-dev-archive@stdcxx.apache.org Received: (qmail 83947 invoked by uid 500); 14 May 2008 17:18:51 -0000 Mailing-List: contact dev-help@stdcxx.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@stdcxx.apache.org Delivered-To: mailing list dev@stdcxx.apache.org Received: (qmail 83936 invoked by uid 99); 14 May 2008 17:18:51 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 May 2008 10:18:51 -0700 X-ASF-Spam-Status: No, hits=2.6 required=10.0 tests=DNS_FROM_OPENWHOIS,SPF_HELO_PASS,SPF_PASS,WHOIS_MYPRIVREG X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of lists@nabble.com designates 216.139.236.158 as permitted sender) Received: from [216.139.236.158] (HELO kuber.nabble.com) (216.139.236.158) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 May 2008 17:18:04 +0000 Received: from isper.nabble.com ([192.168.236.156]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from ) id 1JwKcM-00088C-Ec for dev@stdcxx.apache.org; Wed, 14 May 2008 10:18:18 -0700 Message-ID: <17236438.post@talk.nabble.com> Date: Wed, 14 May 2008 10:18:18 -0700 (PDT) From: pegasus2000 To: dev@stdcxx.apache.org Subject: non_options.push_back( Stringa ); MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-From: pegasus2000@email.it X-Virus-Checked: Checked by ClamAV on apache.org Consider this piece of code: #include #include #include int ErrorLevel; static char *Stringa = "String"; int main () { ndInitSystem (); std::vector< std::string > non_options; non_options.push_back( Stringa ); } Under PSP this code works, but under PSPE the emulator crashes when the system executes non_options.push_back( Stringa ); It's not strange: sometime the code written for PSP doesn't work under PSPE and Nanodesktop must act with a code workaround. I need to know this: how STDCXX translates the method push_back ? I need to know precisely what is the routine that is executed by the system when the method is called (in particular, its position in your source code). Thanks Filippo -- View this message in context: http://www.nabble.com/non_options.push_back%28-Stringa-%29--tp17236438p17236438.html Sent from the stdcxx-dev mailing list archive at Nabble.com.