Re: (Sys 0505) (0, 841)

2005-12-08 Thread Jan Slodicka
Thank you to all who sent the explanation, that was really helpful. I am
searching in the indicated direction, but so far did not find the reason.
I'll let you know about the result.

Best regards,
Jan Slodicka


-- 
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/


(Sys 0505) (0, 841)

2005-12-07 Thread Jan Slodicka
Hello,

does anybody have any clue what does it mean the message
 Error (Sys 0505) (0, 841) ?

I am getting it randomly on my T5 and I am not even sure whether it is
caused by our SW (could be) or something else.
Happens mostly in the system launcher, but also in another application.
Everything seems to be working afterwards.

I could not find any answer on the web.

Than you,
Jan Slodicka


-- 
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/


RE: (Sys 0505) (0, 841)

2005-12-07 Thread Jeffry Loucks
sysErrNotAllowed
Os trap # 841 - sysTrapOEMDispatch

Check for any device specific calls that aren't appropriate for the T5.


Jeff Loucks
Mobile 253-691-8812


-Original Message-
From: Jan Slodicka [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, December 07, 2005 2:05 PM
To: Palm Developer Forum
Subject: (Sys 0505) (0, 841)


Hello,

does anybody have any clue what does it mean the message
 Error (Sys 0505) (0, 841) ?

I am getting it randomly on my T5 and I am not even sure whether it is
caused by our SW (could be) or something else.
Happens mostly in the system launcher, but also in another application.
Everything seems to be working afterwards.

I could not find any answer on the web.

Than you,
Jan Slodicka


-- 
For information on using the PalmSource Developer Forums, or to unsubscribe,
please see http://www.palmos.com/dev/support/forums/

-- 
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/


RE: (Sys 0505) (0, 841)

2005-12-07 Thread Mark Tamura
I would suggest looking for calls to the Hs* APIs in your code.

Mark 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jeffry Loucks
Sent: Wednesday, December 07, 2005 2:49 PM
To: Palm Developer Forum
Subject: RE: (Sys 0505) (0, 841)

sysErrNotAllowed
Os trap # 841 - sysTrapOEMDispatch

Check for any device specific calls that aren't appropriate for the T5.


Jeff Loucks
Mobile 253-691-8812


-Original Message-
From: Jan Slodicka [mailto:[EMAIL PROTECTED]
Sent: Wednesday, December 07, 2005 2:05 PM
To: Palm Developer Forum
Subject: (Sys 0505) (0, 841)


Hello,

does anybody have any clue what does it mean the message
 Error (Sys 0505) (0, 841) ?

I am getting it randomly on my T5 and I am not even sure whether it is
caused by our SW (could be) or something else.
Happens mostly in the system launcher, but also in another application.
Everything seems to be working afterwards.

I could not find any answer on the web.

Than you,
Jan Slodicka


-- 
For information on using the PalmSource Developer Forums, or to
unsubscribe,
please see http://www.palmos.com/dev/support/forums/

-- 
For information on using the PalmSource Developer Forums, or to
unsubscribe, please see http://www.palmos.com/dev/support/forums/

-- 
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/


Re: (Sys 0505) (0, 841)

2005-12-07 Thread Jeff Summers
This error occurs if the program was written for pre-OS5 and is run on an
OS5 device. Typically need to recompile for OS5 or contact vendor.

/js

In your message regarding (Sys 0505) (0, 841) dated Wed, 7 Dec 2005
23:05:23 +0100, Jan Slodicka said that ...

  Hello,
  
  does anybody have any clue what does it mean the message
   Error (Sys 0505) (0, 841) ?
  
  I am getting it randomly on my T5 and I am not even sure whether it is
  caused by our SW (could be) or something else.
  Happens mostly in the system launcher, but also in another application.
  Everything seems to be working afterwards.
  
  I could not find any answer on the web.
  
  Than you,
  Jan Slodicka
  
  
  -- 
  For information on using the PalmSource Developer Forums, or to unsubscribe,
please see http://www.palmos.com/dev/support/forums/
  
  
  



-- 

-- 
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/


Re: (Sys 0505) (0, 841)

2005-12-07 Thread Robert Moynihan
There have been other responses as to what that code means precisely, 
but have you been able to identify if this crash is actually related to 
your app or not?  If you remove your app and do a soft reset (just for 
clean-up purposes) does the problem go away.  If the problem only 
re-occurs once you install and run your app then you could be corrupting 
something in your app that doesn't show up right away.  Buffer overruns 
can do this type of thing, as can some system function calls made under 
specific circumstances.  Some of these can be a real bear to find.  Bob.


Jan Slodicka wrote:


Hello,

does anybody have any clue what does it mean the message
Error (Sys 0505) (0, 841) ?

I am getting it randomly on my T5 and I am not even sure whether it is
caused by our SW (could be) or something else.
Happens mostly in the system launcher, but also in another application.
Everything seems to be working afterwards.

I could not find any answer on the web.

Than you,
   Jan Slodicka


 




--
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/


Re: (Sys 0505) (0, 841)

2005-12-07 Thread Ben Combee
Sys 505 is unimplemented system trap  The parameter 841 means that some 
68K code tried to call trap 841 and it's not there.  Looking at CoreTraps, 
we turn 841 into hex 0x349, and find trap 0xA349 as sysTrapOEMDispatch.


This trap is used to define extensions to the OS done by licensees.  It's 
likely that some code is trying to use a Palm or Handspring-specific 
extension that's not implemented on the T5.  IIRC, the T5 has the Palm 
five-way navigator APIs, but doesn't implement the Handspring trap versions 
of them (they are implemented on the Treo 650), so that's a possible source 
of problems.


At 02:05 PM 12/7/2005, you wrote:

Hello,

does anybody have any clue what does it mean the message
 Error (Sys 0505) (0, 841) ?

I am getting it randomly on my T5 and I am not even sure whether it is
caused by our SW (could be) or something else.
Happens mostly in the system launcher, but also in another application.
Everything seems to be working afterwards.

I could not find any answer on the web.



-- Ben Combee, Senior Software Engineer, Palm, Inc.
   Combee on Palm OS weblog: http://palmos.combee.net/
   Developer Forum Archives:   http://news.palmos.com/read/all_forums/


--
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/