|
My specific question is whether it is safe to obtain a pointer to
errno only one time, and then reference the based value from then on.
When I asked IBM this question, I was told that the pointer probably
won't change, it'll probably always point to the same area in memory.
but they won't guarantee that this will always be the case, so they
strongly recommend that you retrieve the pointer every time. (As ILE C
programs do.)
Since the overhead of retrieving the pointer is insignificant, I just
meekly complied.
It makes sense to me that errno's value would be at a static locationguarantee
and won't float around in memory, but - again - I haven't seen any
of that.
In all of my tests and research, it is indeed a static location that
never changes. The only problem is it's not guaranteed to _always_ be
that way, going forward. So you risk compatibility breaking at some
random time.
In C they do this:
extern int *__errno(void);
#define errno (*__errno())
So every time you reference errno in C, it does call the __errno()
function, and the OS could potentially change the pointer. If it does,
your C code will keep working...
So IMHO, RPG code should work the same way. It's easy enough to write
subprocedures named geterrno() and seterrno() that retrieve the pointer,
and then return/set errno appropriately.
So why fight it?
--
This is the RPG programming on the IBM i / System i (RPG400-L) mailing
list
To post a message email: RPG400-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/rpg400-l.
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.