| View previous topic :: View next topic |
| Author |
Message |
wedoi
Joined: 26 Aug 2005 Posts: 7 Location: Stockholm
|
Posted: Thu Sep 29, 2005 7:37 am Post subject: Support for exceptions? |
|
|
Hi,
Anyone having any luck with exceptions?
| Code: |
printf( "About to test exceptions\n" );
try
{
throw std::exception();
}
catch( std::exception& e )
{
printf( "caught exception" );
}
|
All I ever see before the PSP crashes is the first print ("About to test exceptions")...
Ideas? |
|
| Back to top |
|
 |
wedoi
Joined: 26 Aug 2005 Posts: 7 Location: Stockholm
|
Posted: Fri Sep 30, 2005 3:55 am Post subject: |
|
|
| Never mind. Exceptions work fine in user threads but not in kernel threads. |
|
| Back to top |
|
 |
mrbrown
Joined: 17 Jan 2004 Posts: 1536
|
Posted: Fri Sep 30, 2005 6:02 am Post subject: |
|
|
| Why ain't I surprised? :) |
|
| Back to top |
|
 |
daveyc
Joined: 24 Sep 2005 Posts: 5
|
Posted: Fri Oct 07, 2005 12:04 pm Post subject: |
|
|
Is this a limitation of the PSP, or the PSPSDK?
eg - Will exceptions ever be support in Kernel mode? |
|
| Back to top |
|
 |
|