![]() | |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
I added a program (tool) 'qcallmap' to by little site which will build an index file when directed to a programs file. http://www.tom-phillips.info/qcallmap.txt This index file is keyed by program name and contains a list of all called programs as well as a list of all calling ones. I have run this in Native Redhat Linux Universe as well as a "pick" flavor account on the same box. I have flags for Native Universe and maVerick. I would appreciate any feedback, especially from those on other platforms. Thanks in advance, Tom Ps - qexit is also needed. http://www.tom-phillips.info/qexit.txt |
#3
| |||
| |||
|
|
Tom Phillips wrote: I added a program (tool) 'qcallmap' to by little site which will build an index file when directed to a programs file. http://www.tom-phillips.info/qcallmap.txt This index file is keyed by program name and contains a list of all called programs as well as a list of all calling ones. I have run this in Native Redhat Linux Universe as well as a "pick" flavor account on the same box. I have flags for Native Universe and maVerick. I would appreciate any feedback, especially from those on other platforms. Thanks in advance, Tom Ps - qexit is also needed. http://www.tom-phillips.info/qexit.txt Hi Tom - I have not been through it all, but one quick thing i spotted at the top is that you eqate AM and VM to CHAR 254 and 253 - this is not always the case, atleast on U2 - you can configure the chars for these esp for international version's e.g. char 253 is u umlout so @vm needs to be something different etc. @VM and @AM return the correct chars for such systems. Rgds Symeon. |
#4
| |||
| |||
|
|
Thanks Symeon. I changed all of the programs to use @AM, @FM and @SM. Tom "Symeon" <symeonb (AT) gmail (DOT) com> wrote in message news:1168937893.124005.239900 (AT) 38g2000cwa (DOT) googlegroups.com... Tom Phillips wrote: I added a program (tool) 'qcallmap' to by little site which will build an index file when directed to a programs file. http://www.tom-phillips.info/qcallmap.txt This index file is keyed by program name and contains a list of all called programs as well as a list of all calling ones. I have run this in Native Redhat Linux Universe as well as a "pick" flavor account on the same box. I have flags for Native Universe and maVerick. I would appreciate any feedback, especially from those on other platforms. Thanks in advance, Tom Ps - qexit is also needed. http://www.tom-phillips.info/qexit.txt Hi Tom - I have not been through it all, but one quick thing i spotted at the top is that you eqate AM and VM to CHAR 254 and 253 - this is not always the case, atleast on U2 - you can configure the chars for these esp for international version's e.g. char 253 is u umlout so @vm needs to be something different etc. @VM and @AM return the correct chars for such systems. Rgds Symeon. |
#5
| |||
| |||
|
|
Now I'm troubled by the next post about @fm... Marshall noted that RD/D3 choked on the equ @AM statement. Can/will anyone expand on this? I'd like to produce something that can be used on as many platforms as possible. Comment lines seems to be the only way to handle this. Advise welcome and thanks in advance, Tom rest snipped |
#6
| |||
| |||
|
|
Tom Phillips wrote: Now I'm troubled by the next post about @fm... Marshall noted that RD/D3 choked on the equ @AM statement. Can/will anyone expand on this? I'd like to produce something that can be used on as many platforms as possible. Comment lines seems to be the only way to handle this. Advise welcome and thanks in advance, Tom rest snipped Hi Tom, Check out http://www.pickwiki.com/cgi-bin/wiki.pl?PrePass. This is a program to allow a non-U2, non-QM system to use the $DEFINE $UNDEFINE $IFDEF $IFNDEF $ELSE and $ENDIF compiler directives. You could write your program using the directives and put a comment in it giving the link to PrePass. Regards, Keith |
#7
| |||
| |||
|
|
Now I'm troubled by the next post about @fm... Marshall noted that RD/D3 choked on the equ @AM statement. Can/will anyone expand on this? I'd like to produce something that can be used on as many platforms as possible. Comment lines seems to be the only way to handle this. Advise welcome and thanks in advance, Tom "Tom Phillips" <squash (AT) computer (DOT) org> wrote in message news:ueidnUdfh9RckDDYnZ2dnUVZ_tunnZ2d (AT) comcast (DOT) com... Thanks Symeon. I changed all of the programs to use @AM, @FM and @SM. Tom "Symeon" <symeonb (AT) gmail (DOT) com> wrote in message news:1168937893.124005.239900 (AT) 38g2000cwa (DOT) googlegroups.com... Tom Phillips wrote: I added a program (tool) 'qcallmap' to by little site which will build an index file when directed to a programs file. http://www.tom-phillips.info/qcallmap.txt This index file is keyed by program name and contains a list of all called programs as well as a list of all calling ones. I have run this in Native Redhat Linux Universe as well as a "pick" flavor account on the same box. I have flags for Native Universe and maVerick. I would appreciate any feedback, especially from those on other platforms. Thanks in advance, Tom Ps - qexit is also needed. http://www.tom-phillips.info/qexit.txt Hi Tom - I have not been through it all, but one quick thing i spotted at the top is that you eqate AM and VM to CHAR 254 and 253 - this is not always the case, atleast on U2 - you can configure the chars for these esp for international version's e.g. char 253 is u umlout so @vm needs to be something different etc. @VM and @AM return the correct chars for such systems. Rgds Symeon. |
#8
| |||
| |||
|
|
Tom: Use @AM, @VM, etc throughout your code as you would have used AM, VM, etc. This way you won't have to equate it, initialize it, or worry about other uses of CHAR(254), CHAR(253), etc. However, I'm under the impression that if NLS is used you'll have to recompile since these are compiler directives. Bill "Tom Phillips" <squash (AT) computer (DOT) org> wrote in message news:Kp6dnbyBBc8FiDDYnZ2dnUVZ_rmdnZ2d (AT) comcast (DOT) com... Now I'm troubled by the next post about @fm... Marshall noted that RD/D3 choked on the equ @AM statement. Can/will anyone expand on this? I'd like to produce something that can be used on as many platforms as possible. Comment lines seems to be the only way to handle this. Advise welcome and thanks in advance, Tom "Tom Phillips" <squash (AT) computer (DOT) org> wrote in message news:ueidnUdfh9RckDDYnZ2dnUVZ_tunnZ2d (AT) comcast (DOT) com... Thanks Symeon. I changed all of the programs to use @AM, @FM and @SM. Tom "Symeon" <symeonb (AT) gmail (DOT) com> wrote in message news:1168937893.124005.239900 (AT) 38g2000cwa (DOT) googlegroups.com... Tom Phillips wrote: I added a program (tool) 'qcallmap' to by little site which will build an index file when directed to a programs file. http://www.tom-phillips.info/qcallmap.txt This index file is keyed by program name and contains a list of all called programs as well as a list of all calling ones. I have run this in Native Redhat Linux Universe as well as a "pick" flavor account on the same box. I have flags for Native Universe and maVerick. I would appreciate any feedback, especially from those on other platforms. Thanks in advance, Tom Ps - qexit is also needed. http://www.tom-phillips.info/qexit.txt Hi Tom - I have not been through it all, but one quick thing i spotted at the top is that you eqate AM and VM to CHAR 254 and 253 - this is not always the case, atleast on U2 - you can configure the chars for these esp for international version's e.g. char 253 is u umlout so @vm needs to be something different etc. @VM and @AM return the correct chars for such systems. Rgds Symeon. |
![]() |
| Thread Tools | |
| Display Modes | |
| |