public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* ADS GCP reboots when running the application!
@ 2002-05-13 11:38 rpm
  2002-05-13 16:37 ` Russell King
  0 siblings, 1 reply; 4+ messages in thread
From: rpm @ 2002-05-13 11:38 UTC (permalink / raw)
  To: linux-kernel

Hi !
   I am using  "2.4.9-ac10-rmk2-np1-ads3"  kernel on ADS Graphic Client Board 
(StrongARM). When i run the following c++  code the system reboots. 

************************************************************************
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <iterator>

using namespace std;

int main(int argc, char** argv)
{
    string raw_filename = "input.out";
    ifstream raw_file(raw_filename.c_str());

    vector<long> data;
   
copy(istream_iterator<long>(raw_file),istream_iterator<long>(),back_inserter(data));

    data.erase(data.begin());

    return 0;
}
**********************************************************************
Here, "input.out" is a file containing 10000 numbers. If the numbers in the 
file "input.out" are 5000 then the system works fine. 
    The kernel is not showing any OOPS or panic  , it just reboots ! what i 
think is that some double fault ( fault inside fault handler ) or  something 
similar to that might be causing the precessor to reboot. Can someone  give 
some direction  !

regards,
rpm

ps: I am not attaching the "input.out" file due to large size if some wants 
to test , i can send the file !


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2002-05-14  9:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-05-13 11:38 ADS GCP reboots when running the application! rpm
2002-05-13 16:37 ` Russell King
2002-05-14  9:11   ` rpm
2002-05-14  9:29     ` Russell King

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox