|
|
| Author |
Message |
j_prameela2000
New User
Joined: 01 Jun 2005 Posts: 29 Location: Chennai
|
|
|
|
Please tell me whether there is a chance of getting two on condition errors simultaneously. Up to my knowledge, I hope when the first On condition error occurs itself, the program gets abend unless and otherwise the On condition is handled. Please tell me whether i am correct or wrong.
For example:
On Fixedoverflow
begin;
----
end;
On Sizecondition
begin;
----
end;
----
----
Will I get the both the errors simultaneously. If it is so then anyone please tell me which On condition will be handled first. If the On condition is not handled what will happen? |
|
| Back to top |
|
 |
References
|
Posted: Thu Jun 23, 2005 4:43 pm Post subject: Re: On condition in PL/1 |
 |
|
|
 |
PLPro
New User
Joined: 19 Jul 2005 Posts: 2
|
|
|
|
<I>Will I get the both the errors simultaneously. </I>
No. The first interrupt will suspend further execution until it's processed. Afterwards anything is possible, though. |
|
| Back to top |
|
 |
|
|