Hi and thank you ALL

The problem disappeared, but still didn't find out what was the problem.
However the jdiag output is:
jsh T24MIG ~ -->jdiag
        jdiag - jBASE diagnostic '$Revision: 1.13 $'

System Information
==================

System                      : AIX p570g 3.5 00C8DD9C4C00
OS Release                  : 5.3.0.0
UNIX User                   : T24MIG (uid 5029, euid 5029)
Tty name                    : /dev/pts/33
Time                        : Wed Jul  7 16:44:58 2010

Environment
===========

JBCPORTNO                   : Not Set
JBCRELEASEDIR               : '/jb'
JBCGLOBALDIR                : '/jb'
WARNING: JBCDATADIR is not set, Default '/jb/jbase_data'
WARNING: JBCDATADIR directory '/jb/jbase_data' not valid, error 2
WARNING: JBCDATADIR is subdirectory of JBCGLOBALDIR
HOME                        : '/cgl/t24mig/bnk.run'
JEDIFILEPATH                : '/cgl/t24mig/bnk.run'
JEDIFILENAME_MD             : '/cgl/t24mig/bnk.run/VOC'
JEDIFILENAME_SYSTEM         : '/jb/src/SYSTEM'
RELEASE Information         : Major 4.1 , Minor 5.17 , Patch 5690 (Change
52756)
Spooler dir (JBCSPOOLERDIR) : '/usr/jspooler'
JBCEMULATE                  : 'prime'
WARNING: Cannot access Executable path '/cgl/t24mig/bnk.run/globuspatchbin',
err
or 2
WARNING: Cannot access Library path '/jb/jdk/jre/lib/platform', error 2
Object path (JBCOBJECTLIST) :
'/cgl/t24mig/bnk.run/globuspatchlib:/cgl/t24mig/bn
k.run/lib:/cgl/t24mig/bnk.run/globuslib'
jBASE Compiler Run-time     : '/jb/config/system.properties'
jcompile.ccjbc              : 'gcc'
jcompile.ccjbc.options      : '-fPIC -w'
jcompile.cc                 : 'gcc'
jcompile.cc.options         : '-fPIC -w'
jcompile.cpp                : 'g++'
jcompile.cpp.options        : '-fPIC -w'
jcompile.ccslib             : 'gcc'
jcompile.ccslib.options     : '-shared -Wl,-brtl'
jcompile.ccexe              : 'gcc'
jcompile.ccexe.options      : '-shared -Wl,-brtl'
jcompile.output.file        : '-o'
jcompile.debug              : '-g'
jcompile.optimise           : '-O2'
jcompile.obj.extension      : '.o'
Program dir (JBCDEV_BIN)    : '/cgl/t24mig/bnk.run/bin'
Subroutine dir (JBCDEV_LIB) : '/cgl/t24mig/bnk.run/lib'
Max open files              : 65534

2010/7/7 b...@ht <[email protected]>

> While the jshow results may be normal, you still have a problem with
> the debugger.
>
> You didn't say exactly what the debugger message was.  If you had a
> Variable Not Assigned A Value that was in a named common block, the
> program would not fault on the following runs if the prgram were
> continued from the debugger.  jBASE assign "0" to the unassigned
> variable as they executes the faulted line and the variable will
> remain assigned until tha particular named common is no longer defined
> for that port.  This can be really tough to figure out if your
> executing environment filters out debugger messages before they get to
> the users' screens.
>
> On Jul 5, 11:08 pm, "Rashid K.P" <[email protected]> wrote:
> > HI Igor,
> >
> >    I dont think there is any problem here.  Please read Pawel's  comment
> > above in the thread..  when you compile a program in jbase release higher
> > than 4.1 ,   a shared library file is created along with the executable
> > binary .  The Dup which you are seeing is not an issue , it is how jbase
> > treats programs.
> >
> > Thanks and Regards,
> > Rashid
> >
> >
> >
> > On Mon, Jul 5, 2010 at 11:11 AM, Igor Micev <[email protected]> wrote:
> > > Hi
> >
> > > jsh T24MIG ~ -->echo $PATH
> > > /jb/bin:/jb/config:/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/
> > > sbin:/usr/java
> > > 14/jre/bin:/usr/java14/bin:.:/usr/local/bin:/cgl/t24mig/bnk.run/
> > > globuspatchbin:/
> > > cgl/t24mig/bnk.run/bin:/cgl/t24mig/bnk.run/globusbin:/usr/ccs/bin:/usr/
> > > ucb
> > > jsh T24MIG ~ -->
> > > jsh T24MIG ~ -->echo $JBCDEV_BIN
> > > /cgl/t24mig/bnk.run/bin
> > > jsh T24MIG ~ -->
> >
> > > On Jul 4, 4:37 am, "Sudhakar-\"Dare to Bare\""
> > > <[email protected]> wrote:
> > > > Hi,
> >
> > > >   This issue is because of the PATH variable provided in the
> remote.cmd
> > > or
> > > > .profile. Could you please send me the output of the following
> commands.
> >
> > > > jsh ~>echo $PATH
> > > > jsh ~>echo $JBCDEV_BIN
> >
> > > > Regards,
> > > > Sudhakar
> >
> > > > On Sat, Jul 3, 2010 at 1:50 AM, Pawel (privately) <[email protected]>
> > > wrote:
> > > > > Igor,
> >
> > > > > I did not understand much from your post.
> >
> > > > > Please keep in mind that jBASE programs (since 4.1) are compiled to
> > > > > excutable (../bin/MAP.MANAGER) and library (../bin/MAP.MANAGER.so)
> at
> > > > > the same time.
> > > > > This is done to improve performance of (other) jBASE programs.
> >
> > > > > I belive that when you use "EXECUTE 'MAP.MANGAGER'" in your jBASE
> > > > > program shared library will be loaded and apropriate symbol from it
> > > > > called. No (separate) process from OS point of view will be
> launched -
> > > > > instead jBASE will launch thread for you (pthreads) and execute
> what
> > > you
> > > > > asked. Remember that in such cases you can not observe library
> changes
> > > > > untill logged off (you may compile as much you want ;)).
> >
> > > > > Binary program will only be called when you launch it via non
> EXECUTE
> > > > > method  (eg. from bash shell) or when you delete *.so/*.so.el
> files.
> > > > > Changes are seen immediately (call it from other shell prompt
> please).
> >
> > > > > Hope this helps.
> >
> > > > > Kind regards
> > > > > Pawel
> >
> > > > > Dnia 2-07-2010 o godz. 17:14 Igor Micev napisaƂ(a):
> > > > > > Hi All,
> > > > > > I need this immediately!
> >
> > > > > > There is a routine MAP.MANAGER with duplicate executable
> >
> > > > > > jsh T24MIG ~ -->jshow -c MAP.MANAGER
> > > > > > Executable:          /cgl/t24mig/bnk.run/bin/MAP.MANAGER.so
> > > > > >                      jBC main() version 4.1 Fri Jul  2 16:57:31
> 2010
> > > > > >                      jBC main() source file MAPPING.BP
> > > > > > Executable (DUP!!):  /cgl/t24mig/bnk.run/bin/MAP.MANAGER
> > > > > >                      jBC main() version 4.1 Fri Jul  2 16:57:31
> 2010
> > > > > >                      jBC main() source file MAPPING.BP
> >
> > > > > > when i run it the first time it goes in DEBUG  and continuing
> with Y
> > > > > > the routine ends, the second time i run it, there are no
> problems.
> >
> > > > > > I make DECATALOG, log off and log in, and make EB.COMPILE again
> for
> > > > > > the routine and the same situation. In ./bin/ there are files
> > > > > > MAP.MANAGER, bin/MAP.MANAGER.so AND bin/MAP.MANAGER.so.el
> >
> > > > > > This is case only for this routine, for other routines there are
> no
> > > > > > files with extensions  .so  and  .so.sl
> >
> > > > > > Can anyone suggest something how to resolve this problem?
> >
> > > > > > Regards
> > > > > > Igor Micev
> >
> > > > > > --
> > > > > > Please read the posting guidelines at:
> > > > > >http://groups.google.com/group/jBASE/web/Posting%20Guidelines
> >
> > > > > > IMPORTANT: Type T24: at the start of the subject line for
> questions
> > > > > > specific to Globus/T24
> >
> > > > > > To post, send email to [email protected]
> > > > > > To unsubscribe, send email to [email protected]
> > > > > > For more options, visit this group at
> > > > > >http://groups.google.com/group/jBASE?hl=en
> >
> > > > > --
> > > > > Please read the posting guidelines at:
> > > > >http://groups.google.com/group/jBASE/web/Posting%20Guidelines
> >
> > > > > IMPORTANT: Type T24: at the start of the subject line for questions
> > > > > specific to Globus/T24
> >
> > > > > To post, send email to [email protected]
> > > > > To unsubscribe, send email to [email protected]
> > > > > For more options, visit this group at
> > > > >http://groups.google.com/group/jBASE?hl=en
> >
> > > --
> > > Please read the posting guidelines at:
> > >http://groups.google.com/group/jBASE/web/Posting%20Guidelines
> >
> > > IMPORTANT: Type T24: at the start of the subject line for questions
> > > specific to Globus/T24
> >
> > > To post, send email to [email protected]
> > > To unsubscribe, send email to [email protected]
> > > For more options, visit this group at
> > >http://groups.google.com/group/jBASE?hl=en- Hide quoted text -
> >
> > - Show quoted text -
>
> --
> Please read the posting guidelines at:
> http://groups.google.com/group/jBASE/web/Posting%20Guidelines
>
> IMPORTANT: Type T24: at the start of the subject line for questions
> specific to Globus/T24
>
> To post, send email to [email protected]
> To unsubscribe, send email to [email protected]
> For more options, visit this group at
> http://groups.google.com/group/jBASE?hl=en
>



-- 
Igor Micev

-- 
Please read the posting guidelines at: 
http://groups.google.com/group/jBASE/web/Posting%20Guidelines

IMPORTANT: Type T24: at the start of the subject line for questions specific to 
Globus/T24

To post, send email to [email protected]
To unsubscribe, send email to [email protected]
For more options, visit this group at http://groups.google.com/group/jBASE?hl=en

Reply via email to