91-522 Object Oriented Analysis and Design Fall '02 Project Report Compilation of Juice Plant Simulation on Alpha Machine Tom Kneeland and John Sharko [This is jpsimreportRev03f.txt: Revised 031116 - RJL] Table of Contents I. Objective 1 II. Approach 1 III. Summary of Results and Future Considerations 1 IV. Modifications Required for Compilation 1 V. Execution Results 2 Appendix A Detailed Directory Listing 3 (Lines 149 - 1456) Appendix B Build Log (jpsim_make_script) (Lines 1460 - 1771) ============================================================================= I. Objective Compile the juice plant simulation on a 64 bit Alpha machine using genversion12. II. Approach 1. Copy the juice plant simulation workspace from /usr/proj3/case/95s522/95solc/JPsim/ to /usr/proj3/case/02f522/JPsimProj/jsharko/JPsim. See Appendix A for a detailed directory listing. 2. Modify Imakefiles to generate appropriate Makefiles 3. Make any necessary code changes to resolve compile and linking errors. III. Summary of Results and Future Considerations The juice plant simulation now successfully compiles. Located in the JPsim directory is a log file of a successful compilation(jpsim_make_script). Note that there are numerous warning that should be removed by a future development effort. However the simulation itself does not run (See Section V for details). One of the difficulties of getting a successfull compilation is the hand modification to pr_log.c to remove references to replay_log(). This particular function is actually a component of BDE, so including/linking in the appropriate BDE source should rectify the problem. As a first step to debugging the simulation, the Imakefiles can be modified to not use the GENLOG compiler define which will disable logging. This is the problem we attempted to solve as described in Section V below. IV. Modifications Required for Compilation We applied several modifications to the orriginal source files to make them compatible with GENV12, as well as correct several general compilation errors unrelated to chgen version. A. Modifications to configure.h 1. Add #defines for GENV12, BDELOG, and GENLOG 2. Change RMT variable to point to the appropriate development directory. (ie /usr/proj3/case/02f522/JpdemoProj/tkneelan) 3. Change references from f93olc.* to f95olc.* B. General Modifications to the Imakefiles 1. Change the relative path in the configure.h include statements to point to the root development directory. This can be avoided with a change to the appropriate environment variable. 2. Added GENV12 and GENLOG as compile variables. 3. Changed any references to GENV7 to use GENV12 instead. The appropriate command to execute it is: /usr/proj3/case/gen/ver_12/sjaganat/executables/alpha/chgen12 -log -ansi [-nobp] 4. Change all references to f93olc.* to f95olc.h C. Specific Changes to pr_util Directory 1. Imakefile: Added pr_log as a required object file. 2. pr_log.c: Comment out references to replay_log(), as it does not seem to be available in any source files. [Note 031116: See file ~lechner/bde2alpha_rl/sandbox/bdecheckout/bde/src/bdeReplay.cc: :371: * A client without bdes X11-callback must call replay_log another way. :372: * #ifndef BDELOG, pr_log calls replay_log directly. A version of replay_log is not defined in pr_util with GENLOG but without BDELOG: chgen only checks for GENLOG, and has no knowledge of replay_log. (pr_log.c depends on an application-specfic replay_log, which calls back to encode_token and interpret_command in pr_log.c. Replay_log contains the (minimal) application-specific replay interface; pr_log.c performs only database update tasks.). Since $RL/src/bdeReplay.cc has the only existing version of replay_log, it should be copied and adapted to any project that needs genv12 with replay. E.g. 03f522's exam2 takehome problem 5. - RJL 031116] D. Specific Changes to OP/src Directory 1. Remove the *.s files as they appear to be left over from an previous unsuccessful compilation. 2. Opaction.c: Add global variables key_interrupt, file_is_open, and debug as they are used in various functions in this file, and externed by other source files, but never seem to be declared. E. Specific Changes to olc/src 1. Added lcp_main.c and lcp_main.o as build targets. V. Execution Results The results of the compilation were tested by running jptest.exe in the executables directory from the test directory as follows: jptest.exe JuicePlantTransfer jpbatch.vdf jttest The execution stopped with the following error message: "can not open jttestDB1.dat to find TS data" It appears that jttestDB1.dat is a file that should be created but is not. There is code in pr_log.c that generates this file but it is not working properly. [RJL 031116: With GENLOG #defined and startlog called, the *DB1.dat checkpoint and *.txt logfile should be generated in one simulatio run; then the logfile should be replayed: pr_load will open it and discover the "SR" command and call pr_log; each logfile line must be passed to the replay_log callback or action function. In JPsim, the OP class should open the logfile as a command script. The script name should be .txt; its first line should be "LD DB1.dat\n" and line 2 should be "SR\n". 'LD' will call pr_load, which discovers the "SR" command and calls pr_log(). The latter prepares for replay_log calls on each line. In bde the relay_log calls come from the keyPress GUI event callback. In JPsim, OP must pass them to the replay command interpreter some other way. For example, OPactions.c for script command interpretation might have extra states or enter an alternate submachine because of the "SR" command. This may require extending the OP state model to at least use replay_log as an action routine under control of an [ugh!] temporary flag instead of its normal script-reading functions. (A better way woule be to incorporate bdeReplay's replay_log state machine states directly into the OP state machine. - RJL 031116] [RJL 031030: The working example is now auto-generated by genv12, as in $RL/pr_util/pr_log.c, where $RL is ~/lechner/bde2alpha_rl/sandbox/bdecheckout/bde. - RJL 031030] [RJL 031109: This code has changed in genv12; see $RL/bde/pr_util for latest changes; Nearly up to date is the CVS checkin of bde/pr_util. NOTE: pr_util is Bde-schema-specific, but pr_log.c is largely app-schema-independent. See also the -DGENLOG requirement for genv12 runs to produce pr_log.c - RJL 031109] An attempt was made to resolve this problem by enabling the startlog() call as a command line argument. This was done by modifying lcp_main.c. An additional argument was added to the list of existing arguments. If its value was "y", pr_startlog() would be called. If "n", it wouldn't be called. This did not solve the problem however. It was not clear what the arguments of startlog() should be. [RJL031116: The 2kf522 hominid projects generated a logfile.txt and checkpoint logfileDB1.dat; but they did not replay the logfile. Instead they generated replay commands for bde, an entirely different application. Replay was done by bde/src/bdeReplay and bde/pr_util/pr_log.c. - RJL 031116] ================================================================= Appendix A. Detailed Directory Listing total 4 drwxr-xr-x 15 jsharko fac 1024 Dec 18 19:38 JPsim -rw-r--r-- 1 jsharko fac 0 Dec 18 19:40 JPsim_directories.txt -rw-rw-r-- 1 jsharko fac 2855 Dec 18 15:31 jpsimreport.txt ./JPsim: total 246 drwx------ 2 jsharko fac 512 Dec 16 09:58 CVS -rwx------ 1 jsharko fac 3401 Dec 16 16:55 Imakefile -rwx------ 1 jsharko fac 3395 Dec 16 16:55 Imakefile_new -rwx------ 1 jsharko fac 3305 Dec 16 16:55 Imakefile_orr drwx------ 7 jsharko fac 512 Dec 16 09:58 JP -rwx------ 1 jsharko fac 23272 Dec 16 16:55 JPsim.lg.011119 -rwx------ 1 jsharko fac 69390 Dec 16 16:55 JPsim.vs.JPROOT.dif -rwx------ 1 jsharko fac 849 Dec 16 16:55 JPsim.vs.JPROOT.hlp -rw------- 1 jsharko fac 45609 Dec 18 15:34 Makefile -rwx------ 1 jsharko fac 42220 Dec 16 16:55 Makefile_orr drwx------ 7 jsharko fac 512 Dec 16 16:55 OP drwx------ 7 jsharko fac 512 Dec 16 16:55 TImer -rwx------ 1 jsharko fac 1536 Dec 16 16:55 aareadme -rwx------ 1 jsharko fac 3070 Dec 16 16:55 aareadme_how2buildJPsim -rwx------ 1 jsharko fac 3378 Dec 17 22:07 configure.h drwx------ 6 jsharko fac 512 Dec 18 15:34 executables drwx------ 4 jsharko fac 512 Dec 17 22:13 include -rwx------ 1 jsharko fac 100 Dec 16 16:55 init_tree -rw-r--r-- 1 jsharko fac 2855 Dec 18 19:36 jpsimreport.txt drwx------ 3 jsharko fac 512 Dec 18 15:35 lib -rwx------ 1 jsharko fac 4794 Dec 16 16:55 lsR.14dec97 drwx------ 6 jsharko fac 512 Dec 16 16:55 olc drwx------ 8 jsharko fac 512 Dec 16 16:55 olc.tk -rw------- 1 jsharko fac 24424 Dec 18 15:35 output.txt drwx------ 4 jsharko fac 512 Dec 18 19:36 pr_util drwx------ 3 jsharko fac 512 Dec 16 16:55 schema drwx------ 3 jsharko fac 512 Dec 18 14:04 test drwx------ 15 jsharko fac 1024 Dec 17 22:09 tools ./JPsim/CVS: total 1 -rwx------ 1 jsharko fac 48 Dec 16 16:55 Repository ./JPsim/JP: total 6 drwx------ 2 jsharko fac 512 Dec 16 09:58 CVS drwx------ 4 jsharko fac 512 Dec 16 09:58 doc drwx------ 3 jsharko fac 1024 Dec 16 09:58 include drwx------ 3 jsharko fac 1536 Dec 18 15:35 src drwx------ 3 jsharko fac 512 Dec 16 09:58 test ./JPsim/JP/CVS: total 2 -rwx------ 1 jsharko fac 0 Dec 16 16:55 Entries -rwx------ 1 jsharko fac 51 Dec 16 16:55 Repository -rwx------ 1 jsharko fac 42 Dec 16 16:55 Root ./JPsim/JP/doc: total 2 drwx------ 2 jsharko fac 512 Dec 16 09:58 CVS drwx------ 3 jsharko fac 512 Dec 16 09:58 idraw ./JPsim/JP/doc/CVS: total 1 -rwx------ 1 jsharko fac 0 Dec 16 16:55 Entries -rwx------ 1 jsharko fac 55 Dec 16 16:55 Repository ./JPsim/JP/doc/idraw: total 200 drwx------ 2 jsharko fac 512 Dec 16 09:58 CVS -rwx------ 1 jsharko fac 66142 Dec 16 16:55 lcp_architecture_f93.idraw -rwx------ 1 jsharko fac 68369 Dec 16 16:55 lcp_architecture_f95.idraw -rwx------ 1 jsharko fac 68369 Dec 16 16:55 lcp_architecture_s95.idraw ./JPsim/JP/doc/idraw/CVS: total 1 -rwx------ 1 jsharko fac 61 Dec 16 16:55 Repository ./JPsim/JP/include: total 28 drwx------ 2 jsharko fac 512 Dec 16 09:58 CVS -rwx------ 1 jsharko fac 683 Dec 16 16:55 connectionpoint.h -rwx------ 1 jsharko fac 683 Dec 16 16:55 connectionpoint.h~ -rwx------ 1 jsharko fac 1459 Dec 16 16:55 juicetransfer.h -rwx------ 1 jsharko fac 1459 Dec 16 16:55 juicetransfer.h~ -rwx------ 1 jsharko fac 640 Dec 16 16:55 nodeonpath.h -rwx------ 1 jsharko fac 640 Dec 16 16:55 nodeonpath.h~ -rwx------ 1 jsharko fac 832 Dec 16 16:55 path.h -rwx------ 1 jsharko fac 832 Dec 16 16:55 path.h~ -rwx------ 1 jsharko fac 661 Dec 16 16:55 pipe.h -rwx------ 1 jsharko fac 661 Dec 16 16:55 pipe.h~ -rwx------ 1 jsharko fac 514 Dec 16 16:55 pipetee.h -rwx------ 1 jsharko fac 514 Dec 16 16:55 pipetee.h~ -rwx------ 1 jsharko fac 513 Dec 16 16:55 ppvalve.h -rwx------ 1 jsharko fac 513 Dec 16 16:55 ppvalve.h~ -rwx------ 1 jsharko fac 862 Dec 16 16:55 pump.h -rwx------ 1 jsharko fac 862 Dec 16 16:55 pump.h~ -rwx------ 1 jsharko fac 862 Dec 16 16:55 tank.h -rwx------ 1 jsharko fac 862 Dec 16 16:55 tank.h~ -rwx------ 1 jsharko fac 569 Dec 16 16:55 tivalve.h -rwx------ 1 jsharko fac 569 Dec 16 16:55 tivalve.h~ -rwx------ 1 jsharko fac 569 Dec 16 16:55 tovalve.h -rwx------ 1 jsharko fac 569 Dec 16 16:55 tovalve.h~ -rwx------ 1 jsharko fac 355 Dec 16 16:55 tramp.h -rwx------ 1 jsharko fac 800 Dec 16 16:55 valve.h -rwx------ 1 jsharko fac 800 Dec 16 16:55 valve.h~ ./JPsim/JP/include/CVS: total 1 -rwx------ 1 jsharko fac 59 Dec 16 16:55 Repository ./JPsim/JP/src: total 2233 -rwx------ 1 jsharko fac 23406 Dec 16 16:55 Baaction.c -rw------- 1 jsharko fac 112584 Dec 18 15:35 Baaction.o -rwx------ 1 jsharko fac 3740 Dec 16 16:55 Basetup.c -rw------- 1 jsharko fac 48216 Dec 18 15:35 Basetup.o drwx------ 2 jsharko fac 512 Dec 16 09:58 CVS -rwx------ 1 jsharko fac 2767 Dec 16 16:55 Imakefile -rwx------ 1 jsharko fac 3311 Dec 16 16:55 Imakefile.templ -rwx------ 1 jsharko fac 42992 Dec 16 16:55 Jtaction.c -rw------- 1 jsharko fac 151040 Dec 18 15:35 Jtaction.o -rwx------ 1 jsharko fac 11313 Dec 16 16:55 Jtsetup.c -rw------- 1 jsharko fac 56384 Dec 18 15:35 Jtsetup.o -rw------- 1 jsharko fac 42807 Dec 18 15:34 Makefile -rwx------ 1 jsharko fac 11977 Dec 16 16:55 Tpaction.c -rw------- 1 jsharko fac 71728 Dec 18 15:35 Tpaction.o -rwx------ 1 jsharko fac 4324 Dec 16 16:55 Tpsetup.c -rw------- 1 jsharko fac 49752 Dec 18 15:35 Tpsetup.o -rwx------ 1 jsharko fac 572 Dec 16 16:55 connectionpoint.c -rw------- 1 jsharko fac 44872 Dec 18 15:35 connectionpoint.o -rw------- 1 jsharko fac 45112 Dec 18 15:35 f95olc.o -rwx------ 1 jsharko fac 385 Dec 16 16:55 init_comp -rwx------ 1 jsharko fac 1327 Dec 16 16:55 init_comp.hlp -rwx------ 1 jsharko fac 91 Dec 16 16:55 jpbatch.c -rwx------ 1 jsharko fac 1074 Dec 16 16:55 jpbatch.vdf -rw------- 1 jsharko fac 854688 Dec 18 15:35 jptest.exe -rwx------ 1 jsharko fac 2241 Dec 16 16:55 juiceplant.c -rw------- 1 jsharko fac 41088 Dec 18 15:35 juiceplant.o -rwx------ 1 jsharko fac 1825 Dec 16 16:55 juicetransfer.c -rw------- 1 jsharko fac 56216 Dec 18 15:35 juicetransfer.o -rwx------ 1 jsharko fac 532 Dec 16 16:55 nodeonpath.c -rw------- 1 jsharko fac 44200 Dec 18 15:35 nodeonpath.o -rwx------ 1 jsharko fac 641 Dec 16 16:55 path.c -rw------- 1 jsharko fac 49600 Dec 18 15:35 path.o -rwx------ 1 jsharko fac 520 Dec 16 16:55 pipe.c -rw------- 1 jsharko fac 45512 Dec 18 15:35 pipe.o -rwx------ 1 jsharko fac 421 Dec 16 16:55 pipetee.c -rw------- 1 jsharko fac 41368 Dec 18 15:35 pipetee.o -rwx------ 1 jsharko fac 420 Dec 16 16:55 ppvalve.c -rw------- 1 jsharko fac 41368 Dec 18 15:35 ppvalve.o -rwx------ 1 jsharko fac 639 Dec 16 16:55 pump.c -rw------- 1 jsharko fac 49592 Dec 18 15:35 pump.o -rwx------ 1 jsharko fac 632 Dec 16 16:55 tank.c -rw------- 1 jsharko fac 48224 Dec 18 15:35 tank.o -rwx------ 1 jsharko fac 473 Dec 16 16:55 tivalve.c -rw------- 1 jsharko fac 42776 Dec 18 15:35 tivalve.o -rwx------ 1 jsharko fac 473 Dec 16 16:55 tovalve.c -rw------- 1 jsharko fac 42776 Dec 18 15:35 tovalve.o -rwx------ 1 jsharko fac 1184 Dec 16 16:55 upTempo.c -rw------- 1 jsharko fac 36552 Dec 18 15:35 upTempo.o -rwx------ 1 jsharko fac 2203 Dec 16 16:55 updateTemp.c -rw------- 1 jsharko fac 36496 Dec 18 15:35 updateTemp.o -rwx------ 1 jsharko fac 600 Dec 16 16:55 valve.c -rw------- 1 jsharko fac 48240 Dec 18 15:35 valve.o ./JPsim/JP/src/CVS: total 1 -rwx------ 1 jsharko fac 55 Dec 16 16:55 Repository ./JPsim/JP/test: total 10 drwx------ 2 jsharko fac 512 Dec 16 09:58 CVS -rwx------ 1 jsharko fac 8722 Dec 16 16:55 jpbatch.dat ./JPsim/JP/test/CVS: total 1 -rwx------ 1 jsharko fac 56 Dec 16 16:55 Repository ./JPsim/OP: total 5 drwx------ 2 jsharko fac 512 Dec 16 09:58 CVS drwx------ 6 jsharko fac 512 Dec 16 09:58 doc drwx------ 3 jsharko fac 512 Dec 16 09:58 include drwx------ 3 jsharko fac 512 Dec 18 19:39 src drwx------ 3 jsharko fac 512 Dec 16 16:55 test ./JPsim/OP/CVS: total 1 -rwx------ 1 jsharko fac 0 Dec 16 16:55 Entries -rwx------ 1 jsharko fac 51 Dec 16 16:55 Repository ./JPsim/OP/doc: total 51 drwx------ 2 jsharko fac 512 Dec 16 09:58 93folc -rwx------ 1 jsharko fac 46765 Dec 16 16:55 94solcOPdoc.tex drwx------ 2 jsharko fac 512 Dec 16 09:58 CVS drwx------ 2 jsharko fac 1024 Dec 16 09:58 OPclassdocs -rwx------ 1 jsharko fac 524 Dec 16 16:55 aareadme drwx------ 3 jsharko fac 512 Dec 16 09:58 idraw ./JPsim/OP/doc/93folc: total 0 ./JPsim/OP/doc/CVS: total 1 -rwx------ 1 jsharko fac 55 Dec 16 16:55 Repository ./JPsim/OP/doc/OPclassdocs: total 373 -rwx------ 1 jsharko fac 2302 Dec 16 16:55 OPclass.dat -rwx------ 1 jsharko fac 2475 Dec 16 16:55 OPclass.database -rwx------ 1 jsharko fac 23587 Dec 16 16:55 OPclassSM.idraw -rwx------ 1 jsharko fac 1736 Dec 16 16:55 OPclass_user_guide.aux -rwx------ 1 jsharko fac 1524 Dec 16 16:55 OPclass_user_guide.dlog -rwx------ 1 jsharko fac 27188 Dec 16 16:55 OPclass_user_guide.dvi -rwx------ 1 jsharko fac 355 Dec 16 16:55 OPclass_user_guide.lof -rwx------ 1 jsharko fac 4745 Dec 16 16:55 OPclass_user_guide.log -rwx------ 1 jsharko fac 218944 Dec 16 16:55 OPclass_user_guide.ps -rwx------ 1 jsharko fac 19683 Dec 16 16:55 OPclass_user_guide.tex -rwx------ 1 jsharko fac 713 Dec 16 16:55 OPclass_user_guide.toc -rwx------ 1 jsharko fac 169 Dec 16 16:55 aareadme -rwx------ 1 jsharko fac 3341 Dec 16 16:55 aareadme_build3 -rwx------ 1 jsharko fac 175 Dec 16 16:55 aareadme_idraw -rwx------ 1 jsharko fac 479 Dec 16 16:55 aareadme_userguide -rwx------ 1 jsharko fac 16708 Dec 16 16:55 eventdata2.idraw -rwx------ 1 jsharko fac 17740 Dec 16 16:55 statemodel2.idraw -rwx------ 1 jsharko fac 18858 Dec 16 16:55 statetranstable2.idraw ./JPsim/OP/doc/idraw: total 350 drwx------ 2 jsharko fac 512 Dec 16 09:58 CVS -rwx------ 1 jsharko fac 27376 Dec 16 16:55 fig1.idraw -rwx------ 1 jsharko fac 16582 Dec 16 16:55 fig10.idraw -rwx------ 1 jsharko fac 14978 Dec 16 16:55 fig11.idraw -rwx------ 1 jsharko fac 18260 Dec 16 16:55 fig12.idraw -rwx------ 1 jsharko fac 16132 Dec 16 16:55 fig13.idraw -rwx------ 1 jsharko fac 23651 Dec 16 16:55 fig14.idraw -rwx------ 1 jsharko fac 18360 Dec 16 16:55 fig15.idraw -rwx------ 1 jsharko fac 22604 Dec 16 16:55 fig2.idraw -rwx------ 1 jsharko fac 21182 Dec 16 16:55 fig3.idraw -rwx------ 1 jsharko fac 20215 Dec 16 16:55 fig4.idraw -rwx------ 1 jsharko fac 29781 Dec 16 16:55 fig5.idraw -rwx------ 1 jsharko fac 16054 Dec 16 16:55 fig6.idraw -rwx------ 1 jsharko fac 13835 Dec 16 16:55 fig7.idraw -rwx------ 1 jsharko fac 29333 Dec 16 16:55 fig8.idraw -rwx------ 1 jsharko fac 62033 Dec 16 16:55 fig9.idraw ./JPsim/OP/doc/idraw/CVS: total 1 -rwx------ 1 jsharko fac 61 Dec 16 16:55 Repository ./JPsim/OP/include: total 1 drwx------ 2 jsharko fac 512 Dec 16 09:58 CVS ./JPsim/OP/include/CVS: total 1 -rwx------ 1 jsharko fac 0 Dec 16 16:55 Entries -rwx------ 1 jsharko fac 59 Dec 16 16:55 Repository ./JPsim/OP/src: total 443 drwx------ 2 jsharko fac 512 Dec 16 09:58 CVS -rwx------ 1 jsharko fac 1922 Dec 16 16:55 Imakefile -rwx------ 1 jsharko fac 1885 Dec 16 16:55 Imakefile.templ -rw------- 1 jsharko fac 42761 Dec 18 15:34 Makefile -rwx------ 1 jsharko fac 38558 Dec 16 16:55 Opaction.c -rwx------ 1 jsharko fac 112250 Dec 16 16:55 Opaction.cpp -rw------- 1 jsharko fac 121976 Dec 18 15:35 Opaction.o -rwx------ 1 jsharko fac 54422 Dec 16 16:55 Opaction.ps -rwx------ 1 jsharko fac 4080 Dec 16 16:55 Opsetup.c -rw------- 1 jsharko fac 42736 Dec 18 15:35 Opsetup.o -rwx------ 1 jsharko fac 8920 Dec 16 16:55 Opsetup.ps -rwx------ 1 jsharko fac 385 Dec 16 16:55 init_comp ./JPsim/OP/src/CVS: total 1 -rwx------ 1 jsharko fac 55 Dec 16 16:55 Repository ./JPsim/OP/test: total 1 drwx------ 2 jsharko fac 512 Dec 16 16:55 CVS ./JPsim/OP/test/CVS: total 1 -rwx------ 1 jsharko fac 0 Dec 16 16:55 Entries -rwx------ 1 jsharko fac 56 Dec 16 16:55 Repository ./JPsim/TImer: total 5 drwx------ 2 jsharko fac 512 Dec 16 16:55 CVS drwx------ 4 jsharko fac 512 Dec 16 16:55 doc drwx------ 3 jsharko fac 512 Dec 16 16:55 include drwx------ 3 jsharko fac 512 Dec 18 15:35 src drwx------ 3 jsharko fac 512 Dec 16 16:55 test ./JPsim/TImer/CVS: total 1 -rwx------ 1 jsharko fac 0 Dec 16 16:55 Entries -rwx------ 1 jsharko fac 54 Dec 16 16:55 Repository ./JPsim/TImer/doc: total 80 -rwx------ 1 jsharko fac 74321 Dec 16 16:55 94solcTIdoc.tex -rwx------ 1 jsharko fac 4132 Dec 16 16:55 94solcTIdoc.toc drwx------ 2 jsharko fac 512 Dec 16 16:55 CVS drwx------ 3 jsharko fac 512 Dec 16 16:55 idraw ./JPsim/TImer/doc/CVS: total 1 -rwx------ 1 jsharko fac 58 Dec 16 16:55 Repository ./JPsim/TImer/doc/idraw: total 154 drwx------ 2 jsharko fac 512 Dec 16 16:55 CVS -rwx------ 1 jsharko fac 14887 Dec 16 16:55 fire.idraw -rwx------ 1 jsharko fac 18419 Dec 16 16:55 pseudo.idraw -rwx------ 1 jsharko fac 16470 Dec 16 16:55 reset.idraw -rwx------ 1 jsharko fac 16799 Dec 16 16:55 set.idraw -rwx------ 1 jsharko fac 19080 Dec 16 16:55 test.idraw -rwx------ 1 jsharko fac 17996 Dec 16 16:55 tick.idraw -rwx------ 1 jsharko fac 24315 Dec 16 16:55 timer.idraw -rwx------ 1 jsharko fac 25306 Dec 16 16:55 tree.idraw ./JPsim/TImer/doc/idraw/CVS: total 1 -rwx------ 1 jsharko fac 64 Dec 16 16:55 Repository ./JPsim/TImer/include: total 7 drwx------ 2 jsharko fac 512 Dec 16 16:55 CVS -rwx------ 1 jsharko fac 2095 Dec 16 16:55 timer.h -rwx------ 1 jsharko fac 2095 Dec 16 16:55 timer.h~ ./JPsim/TImer/include/CVS: total 1 -rwx------ 1 jsharko fac 62 Dec 16 16:55 Repository ./JPsim/TImer/src: total 224 drwx------ 2 jsharko fac 512 Dec 16 16:55 CVS -rwx------ 1 jsharko fac 1987 Dec 16 16:55 Imakefile -rwx------ 1 jsharko fac 1974 Dec 16 16:55 Imakefile.templ -rw------- 1 jsharko fac 42837 Dec 18 15:34 Makefile -rwx------ 1 jsharko fac 8967 Dec 16 16:55 Tiaction.c -rw------- 1 jsharko fac 60968 Dec 18 15:35 Tiaction.o -rwx------ 1 jsharko fac 2767 Dec 16 16:55 Tisetup.c -rw------- 1 jsharko fac 41856 Dec 18 15:35 Tisetup.o -rwx------ 1 jsharko fac 385 Dec 16 16:55 init_comp -rwx------ 1 jsharko fac 5522 Dec 16 16:55 timer.c -rw------- 1 jsharko fac 57720 Dec 18 15:35 timer.o ./JPsim/TImer/src/CVS: total 1 -rwx------ 1 jsharko fac 58 Dec 16 16:55 Repository ./JPsim/TImer/test: total 1 drwx------ 2 jsharko fac 512 Dec 16 16:55 CVS ./JPsim/TImer/test/CVS: total 1 -rwx------ 1 jsharko fac 0 Dec 16 16:55 Entries -rwx------ 1 jsharko fac 59 Dec 16 16:55 Repository ./JPsim/executables: total 5 drwx------ 2 jsharko fac 512 Dec 16 16:55 CVS drwx------ 2 jsharko fac 512 Dec 16 16:55 alpha drwx------ 2 jsharko fac 512 Dec 16 16:55 decstation -rwx------ 1 jsharko fac 707 Dec 16 16:55 lcp drwx------ 2 jsharko fac 512 Dec 16 16:55 vax ./JPsim/executables/CVS: total 1 -rwx------ 1 jsharko fac 0 Dec 16 16:55 Entries -rwx------ 1 jsharko fac 60 Dec 16 16:55 Repository ./JPsim/executables/alpha: total 1 -rwx------ 1 jsharko fac 217 Dec 16 16:55 jptest.sh ./JPsim/executables/decstation: total 1 -rwx------ 1 jsharko fac 70 Dec 16 16:55 jptest ./JPsim/executables/vax: total 992 -rwx------ 1 jsharko fac 1004544 Dec 16 16:55 jptest ./JPsim/include: total 254 drwx------ 2 jsharko fac 512 Dec 16 16:55 CVS -rwx------ 1 jsharko fac 913 Dec 16 16:55 define.h -rwx------ 1 jsharko fac 118 Dec 17 22:13 f95olc.c -rwx------ 1 jsharko fac 118 Dec 17 22:01 f95olc.c~ -rwx------ 1 jsharko fac 70558 Dec 18 15:35 f95olc.h -rwx------ 1 jsharko fac 69716 Dec 16 16:55 f95olc.h~ -rwx------ 1 jsharko fac 58527 Dec 18 15:35 jpbatch.h -rwx------ 1 jsharko fac 9633 Dec 16 16:55 mgf_letter.ps -rwx------ 1 jsharko fac 15846 Dec 16 16:55 olc3common.h -rwx------ 1 jsharko fac 27038 Dec 16 16:55 olc3common.h.ps drwx------ 2 jsharko fac 512 Dec 16 16:55 old ./JPsim/include/CVS: total 1 -rwx------ 1 jsharko fac 56 Dec 16 16:55 Repository ./JPsim/include/old: total 69 -rwx------ 1 jsharko fac 118 Dec 16 16:55 f93olc.c -rwx------ 1 jsharko fac 69361 Dec 16 16:55 f93olc.h ./JPsim/lib: total 1953 drwx------ 2 jsharko fac 512 Dec 16 16:55 CVS -rw------- 1 jsharko fac 588180 Dec 18 15:35 olclib.a -rw------- 1 jsharko fac 1384776 Dec 18 15:35 pr_util.a ./JPsim/lib/CVS: total 1 -rwx------ 1 jsharko fac 0 Dec 16 16:55 Entries -rwx------ 1 jsharko fac 52 Dec 16 16:55 Repository ./JPsim/olc: total 5 -rwx------ 1 jsharko fac 400 Dec 16 16:55 aareadme drwx------ 3 jsharko fac 512 Dec 16 16:55 doc drwx------ 2 jsharko fac 512 Dec 16 16:55 include drwx------ 2 jsharko fac 1024 Dec 18 15:35 src drwx------ 2 jsharko fac 512 Dec 16 16:55 test ./JPsim/olc/doc: total 1 drwx------ 3 jsharko fac 512 Dec 16 16:55 idraw ./JPsim/olc/doc/idraw: total 1 drwx------ 2 jsharko fac 512 Dec 16 16:55 CVS ./JPsim/olc/doc/idraw/CVS: total 1 -rwx------ 1 jsharko fac 0 Dec 16 16:55 Entries -rwx------ 1 jsharko fac 62 Dec 16 16:55 Repository ./JPsim/olc/include: total 100 -rwx------ 1 jsharko fac 37533 Dec 16 16:55 JPsim_includes.ps -rwx------ 1 jsharko fac 1865 Dec 16 16:55 activeclass.h -rwx------ 1 jsharko fac 1865 Dec 16 16:55 activeclass.h~ -rwx------ 1 jsharko fac 1563 Dec 16 16:55 activeinstance.h -rwx------ 1 jsharko fac 1563 Dec 16 16:55 activeinstance.h~ -rwx------ 1 jsharko fac 413 Dec 16 16:55 enable.h -rwx------ 1 jsharko fac 413 Dec 16 16:55 enable.h~ -rwx------ 1 jsharko fac 4224 Dec 16 16:55 eventinstance.h -rwx------ 1 jsharko fac 4224 Dec 16 16:55 eventinstance.h~ -rwx------ 1 jsharko fac 1173 Dec 16 16:55 eventtype.h -rwx------ 1 jsharko fac 1173 Dec 16 16:55 eventtype.h~ -rwx------ 1 jsharko fac 3272 Dec 16 16:55 lcp_main.h -rwx------ 1 jsharko fac 3270 Dec 16 16:55 lcp_main.h~ -rwx------ 1 jsharko fac 2238 Dec 16 16:55 processevent.h -rwx------ 1 jsharko fac 4517 Dec 16 16:55 state.h -rwx------ 1 jsharko fac 4517 Dec 16 16:55 state.h~ -rwx------ 1 jsharko fac 6053 Dec 16 16:55 statemodel.h -rwx------ 1 jsharko fac 6053 Dec 16 16:55 statemodel.h~ -rwx------ 1 jsharko fac 2076 Dec 16 16:55 transition.h -rwx------ 1 jsharko fac 2076 Dec 16 16:55 transition.h~ ./JPsim/olc/src: total 1264 -rwx------ 1 jsharko fac 3002 Dec 16 16:55 Imakefile -rwx------ 1 jsharko fac 3184 Dec 16 16:55 Imakefile.templ -rw------- 1 jsharko fac 43514 Dec 18 15:34 Makefile -rwx------ 1 jsharko fac 4126 Dec 16 16:55 OLCUserCommands.c -rw------- 1 jsharko fac 43248 Dec 18 15:35 OLCUserCommands.o -rwx------ 1 jsharko fac 651 Dec 16 16:55 OLCappsetup.c -rw------- 1 jsharko fac 8320 Dec 18 15:35 OLCappsetup.o -rwx------ 1 jsharko fac 1098 Dec 16 16:55 activeclass.c -rw------- 1 jsharko fac 43136 Dec 18 15:35 activeclass.o -rwx------ 1 jsharko fac 1916 Dec 16 16:55 activeinstance.c -rw------- 1 jsharko fac 52040 Dec 18 15:35 activeinstance.o -rwx------ 1 jsharko fac 1083 Dec 16 16:55 enable.c -rw------- 1 jsharko fac 42216 Dec 18 15:35 enable.o -rwx------ 1 jsharko fac 6832 Dec 16 16:55 eventinstance.c -rw------- 1 jsharko fac 64424 Dec 18 15:35 eventinstance.o -rwx------ 1 jsharko fac 1429 Dec 16 16:55 eventtype.c -rw------- 1 jsharko fac 48728 Dec 18 15:35 eventtype.o -rwx------ 1 jsharko fac 385 Dec 16 16:55 init_comp -rwx------ 1 jsharko fac 11455 Dec 18 14:12 lcp_main.c -rw------- 1 jsharko fac 75448 Dec 18 15:35 lcp_main.o -rw------- 1 jsharko fac 588180 Dec 18 15:35 olclib.a -rwx------ 1 jsharko fac 562 Dec 16 16:55 processOLCevents.c -rw------- 1 jsharko fac 7944 Dec 18 15:35 processOLCevents.o -rwx------ 1 jsharko fac 9036 Dec 16 16:55 processevent.c -rw------- 1 jsharko fac 51264 Dec 18 15:35 processevent.o -rwx------ 1 jsharko fac 1581 Dec 16 16:55 state.c -rw------- 1 jsharko fac 51952 Dec 18 15:35 state.o -rwx------ 1 jsharko fac 5190 Dec 16 16:55 statemodel.c -rw------- 1 jsharko fac 49656 Dec 18 15:35 statemodel.o -rwx------ 1 jsharko fac 1202 Dec 16 16:55 transition.c -rw------- 1 jsharko fac 45048 Dec 18 15:35 transition.o ./JPsim/olc/test: total 0 ./JPsim/olc.tk: total 6 drwx------ 2 jsharko fac 512 Dec 16 16:55 CVS drwx------ 3 jsharko fac 512 Dec 16 16:55 doc drwx------ 3 jsharko fac 512 Dec 16 16:55 idraw drwx------ 3 jsharko fac 512 Dec 16 16:55 include drwx------ 3 jsharko fac 512 Dec 16 16:55 src drwx------ 3 jsharko fac 512 Dec 16 16:55 test ./JPsim/olc.tk/CVS: total 3 -rwx------ 1 jsharko fac 57 Dec 16 16:55 Entries -rwx------ 1 jsharko fac 52 Dec 16 16:55 Repository -rwx------ 1 jsharko fac 42 Dec 16 16:55 Root ./JPsim/olc.tk/doc: total 1 drwx------ 2 jsharko fac 512 Dec 16 16:55 CVS ./JPsim/olc.tk/doc/CVS: total 3 -rwx------ 1 jsharko fac 2 Dec 16 16:55 Entries -rwx------ 1 jsharko fac 56 Dec 16 16:55 Repository -rwx------ 1 jsharko fac 42 Dec 16 16:55 Root ./JPsim/olc.tk/idraw: total 1 drwx------ 2 jsharko fac 512 Dec 16 16:55 CVS ./JPsim/olc.tk/idraw/CVS: total 3 -rwx------ 1 jsharko fac 2 Dec 16 16:55 Entries -rwx------ 1 jsharko fac 58 Dec 16 16:55 Repository -rwx------ 1 jsharko fac 42 Dec 16 16:55 Root ./JPsim/olc.tk/include: total 30 drwx------ 2 jsharko fac 512 Dec 16 16:55 CVS -rwx------ 1 jsharko fac 1865 Dec 16 16:55 activeclass.h -rwx------ 1 jsharko fac 1563 Dec 16 16:55 activeinstance.h -rwx------ 1 jsharko fac 413 Dec 16 16:55 enable.h -rwx------ 1 jsharko fac 4224 Dec 16 16:55 eventinstance.h -rwx------ 1 jsharko fac 1173 Dec 16 16:55 eventtype.h -rwx------ 1 jsharko fac 2238 Dec 16 16:55 processevent.h -rwx------ 1 jsharko fac 4517 Dec 16 16:55 state.h -rwx------ 1 jsharko fac 6053 Dec 16 16:55 statemodel.h -rwx------ 1 jsharko fac 2076 Dec 16 16:55 transition.h ./JPsim/olc.tk/include/CVS: total 3 -rwx------ 1 jsharko fac 443 Dec 16 16:55 Entries -rwx------ 1 jsharko fac 60 Dec 16 16:55 Repository -rwx------ 1 jsharko fac 42 Dec 16 16:55 Root ./JPsim/olc.tk/src: total 159 drwx------ 2 jsharko fac 512 Dec 16 16:55 CVS -rwx------ 1 jsharko fac 6985 Dec 16 16:55 Environ_update_JPsim.c -rwx------ 1 jsharko fac 3213 Dec 16 16:55 Imakefile -rwx------ 1 jsharko fac 3292 Dec 16 16:55 Imakefile.templ -rwx------ 1 jsharko fac 43705 Dec 16 16:55 Makefile -rwx------ 1 jsharko fac 43705 Dec 16 16:55 Makefile.bak -rwx------ 1 jsharko fac 4126 Dec 16 16:55 OLCUserCommands.c -rwx------ 1 jsharko fac 651 Dec 16 16:55 OLCappsetup.c -rwx------ 1 jsharko fac 1098 Dec 16 16:55 activeclass.c -rwx------ 1 jsharko fac 1916 Dec 16 16:55 activeinstance.c -rwx------ 1 jsharko fac 1083 Dec 16 16:55 enable.c -rwx------ 1 jsharko fac 6832 Dec 16 16:55 eventinstance.c -rwx------ 1 jsharko fac 1429 Dec 16 16:55 eventtype.c -rwx------ 1 jsharko fac 385 Dec 16 16:55 init_comp -rwx------ 1 jsharko fac 13856 Dec 16 16:55 lcp_main.c -rwx------ 1 jsharko fac 562 Dec 16 16:55 processOLCevents.c -rwx------ 1 jsharko fac 9688 Dec 16 16:55 processevent.c -rwx------ 1 jsharko fac 1581 Dec 16 16:55 state.c -rwx------ 1 jsharko fac 5190 Dec 16 16:55 statemodel.c -rwx------ 1 jsharko fac 1202 Dec 16 16:55 transition.c ./JPsim/olc.tk/src/CVS: total 3 -rwx------ 1 jsharko fac 742 Dec 16 16:55 Entries -rwx------ 1 jsharko fac 56 Dec 16 16:55 Repository -rwx------ 1 jsharko fac 42 Dec 16 16:55 Root ./JPsim/olc.tk/test: total 1 drwx------ 2 jsharko fac 512 Dec 16 16:55 CVS ./JPsim/olc.tk/test/CVS: total 3 -rwx------ 1 jsharko fac 2 Dec 16 16:55 Entries -rwx------ 1 jsharko fac 57 Dec 16 16:55 Repository -rwx------ 1 jsharko fac 42 Dec 16 16:55 Root ./JPsim/pr_util: total 3209 drwx------ 2 jsharko fac 512 Dec 16 10:03 CVS -rwx------ 1 jsharko fac 2220 Dec 16 16:55 Imakefile -rw------- 1 jsharko fac 42804 Dec 18 15:34 Makefile -rwx------ 1 jsharko fac 70558 Dec 18 15:35 f95olc.h -rwx------ 1 jsharko fac 58527 Dec 18 15:35 jpbatch.h drwx------ 2 jsharko fac 512 Dec 16 10:03 old -rwx------ 1 jsharko fac 22661 Dec 18 15:35 pr_delete.c -rw------- 1 jsharko fac 204784 Dec 18 15:35 pr_delete.o -rwx------ 1 jsharko fac 21929 Dec 18 15:35 pr_dump.c -rw------- 1 jsharko fac 108232 Dec 18 15:35 pr_dump.o -rwx------ 1 jsharko fac 2123 Dec 18 15:35 pr_free.c -rw------- 1 jsharko fac 63304 Dec 18 15:35 pr_free.o -rwx------ 1 jsharko fac 115501 Dec 18 15:35 pr_load.c -rw------- 1 jsharko fac 579912 Dec 18 15:35 pr_load.o -rwx------ 1 jsharko fac 93816 Dec 18 15:35 pr_log.c -rw------- 1 jsharko fac 378520 Dec 18 15:35 pr_log.o -rwx------ 1 jsharko fac 5981 Dec 18 15:35 pr_stats.c -rw------- 1 jsharko fac 44032 Dec 18 15:35 pr_stats.o -rw------- 1 jsharko fac 1384776 Dec 18 15:35 pr_util.a ./JPsim/pr_util/CVS: total 1 -rwx------ 1 jsharko fac 56 Dec 16 16:55 Repository ./JPsim/pr_util/old: total 356 -rwx------ 1 jsharko fac 69361 Dec 16 16:55 f93olc.h -rwx------ 1 jsharko fac 69716 Dec 16 16:55 f95olc.h -rwx------ 1 jsharko fac 33 Dec 16 16:55 init_comp -rwx------ 1 jsharko fac 57685 Dec 16 16:55 jpbatch.h -rwx------ 1 jsharko fac 18307 Dec 16 16:55 pr_delete.c -rwx------ 1 jsharko fac 21929 Dec 16 16:55 pr_dump.c -rwx------ 1 jsharko fac 2112 Dec 16 16:55 pr_free.c -rwx------ 1 jsharko fac 99438 Dec 16 16:55 pr_load.c -rwx------ 1 jsharko fac 5981 Dec 16 16:55 pr_stats.c ./JPsim/schema: total 275 drwx------ 2 jsharko fac 512 Dec 16 16:55 CVS -rwx------ 1 jsharko fac 16952 Dec 18 15:34 f93olc.sch -rwx------ 1 jsharko fac 3715 Dec 16 16:55 f93olcSModel.sch -rwx------ 1 jsharko fac 76903 Dec 16 16:55 f95olc.idraw -rwx------ 1 jsharko fac 19215 Dec 16 16:55 f95olc.sch -rwx------ 1 jsharko fac 77030 Dec 16 16:55 f95olcTBD.idraw -rwx------ 1 jsharko fac 19229 Dec 16 16:55 f95olcTBD.sch -rwx------ 1 jsharko fac 30574 Dec 16 16:55 f95olcTBD.sch.ps -rwx------ 1 jsharko fac 19439 Dec 16 16:55 f95olcTBD.tmp -rwx------ 1 jsharko fac 13366 Dec 18 15:34 jpbatch.sch ./JPsim/schema/CVS: total 1 -rwx------ 1 jsharko fac 55 Dec 16 16:55 Repository ./JPsim/test: total 2233 drwx------ 2 jsharko fac 512 Dec 16 16:55 CVS -rwx------ 1 jsharko fac 8722 Dec 16 16:55 jpbatch.dat -rwx------ 1 jsharko fac 1074 Dec 16 16:55 jpbatch.vdf -rwx------ 1 jsharko fac 1039360 Dec 16 16:55 jptest.exe.greg -rwx------ 1 jsharko fac 22048 Dec 16 16:55 jttest.dat -rwx------ 1 jsharko fac 23 Dec 16 16:55 jttest.script -rw------- 1 jsharko fac 11266 Dec 18 14:13 logdata.txt -rwx------ 1 jsharko fac 346 Dec 16 16:55 runolc -rwx------ 1 jsharko fac 1114262 Dec 16 16:55 temp.dat.bak -rw------- 1 jsharko fac 9354 Dec 18 07:13 tempjpbatch.dat -rw------- 1 jsharko fac 23296 Dec 18 07:01 tempjttest.dat -rw------- 1 jsharko fac 11547 Dec 18 14:13 temptest.dat -rwx------ 1 jsharko fac 10943 Dec 16 16:55 test.dat -rwx------ 1 jsharko fac 215 Dec 16 16:55 test.script ./JPsim/test/CVS: total 1 -rwx------ 1 jsharko fac 53 Dec 16 16:55 Repository ./JPsim/tools: total 278 drwx------ 2 jsharko fac 512 Dec 16 16:55 CVS -rwx------ 1 jsharko fac 3401 Dec 17 22:09 Imakefile -rwx------ 1 jsharko fac 3395 Dec 17 22:09 Imakefile_new -rwx------ 1 jsharko fac 3305 Dec 17 22:09 Imakefile_orr drwx------ 7 jsharko fac 512 Dec 17 21:48 JP -rwx------ 1 jsharko fac 23272 Dec 17 22:09 JPsim.lg.011119 -rwx------ 1 jsharko fac 69390 Dec 17 22:09 JPsim.vs.JPROOT.dif -rwx------ 1 jsharko fac 849 Dec 17 22:09 JPsim.vs.JPROOT.hlp -rw------- 1 jsharko fac 45609 Dec 17 22:09 Makefile -rw------- 1 jsharko fac 45605 Dec 17 22:09 Makefile.bak -rwx------ 1 jsharko fac 42220 Dec 17 22:09 Makefile_orr drwx------ 7 jsharko fac 512 Dec 17 21:48 OP drwx------ 7 jsharko fac 512 Dec 17 21:48 TImer -rwx------ 1 jsharko fac 1536 Dec 17 22:09 aareadme -rwx------ 1 jsharko fac 3070 Dec 17 22:09 aareadme_how2buildJPsim -rwx------ 1 jsharko fac 3378 Dec 17 22:09 configure.h -rwx------ 1 jsharko fac 3361 Dec 17 22:09 configure.h_new -rwx------ 1 jsharko fac 3145 Dec 17 22:09 configure.h_orr -rwx------ 1 jsharko fac 3374 Dec 17 22:09 configure.h~ drwx------ 6 jsharko fac 512 Dec 17 21:48 executables drwx------ 4 jsharko fac 512 Dec 17 22:09 include -rwx------ 1 jsharko fac 100 Dec 17 22:09 init_tree drwx------ 3 jsharko fac 512 Dec 18 15:34 lib -rwx------ 1 jsharko fac 4794 Dec 17 22:09 lsR.14dec97 -rwx------ 1 jsharko fac 1622 Dec 16 16:55 makeawk drwx------ 6 jsharko fac 512 Dec 17 21:48 olc drwx------ 8 jsharko fac 512 Dec 17 21:48 olc.tk drwx------ 4 jsharko fac 512 Dec 18 15:34 pr_util drwx------ 3 jsharko fac 512 Dec 17 21:48 schema drwx------ 3 jsharko fac 512 Dec 17 21:48 test drwx------ 3 jsharko fac 512 Dec 17 21:48 tools ./JPsim/tools/CVS: total 1 -rwx------ 1 jsharko fac 48 Dec 17 22:09 Repository ./JPsim/tools/JP: total 6 drwx------ 2 jsharko fac 512 Dec 17 21:47 CVS drwx------ 4 jsharko fac 512 Dec 17 21:47 doc drwx------ 3 jsharko fac 1024 Dec 17 21:47 include drwx------ 3 jsharko fac 1536 Dec 18 15:34 src drwx------ 3 jsharko fac 512 Dec 17 21:48 test ./JPsim/tools/JP/CVS: total 2 -rwx------ 1 jsharko fac 0 Dec 17 22:09 Entries -rwx------ 1 jsharko fac 51 Dec 17 22:09 Repository -rwx------ 1 jsharko fac 42 Dec 17 22:09 Root ./JPsim/tools/JP/doc: total 2 drwx------ 2 jsharko fac 512 Dec 17 21:47 CVS drwx------ 3 jsharko fac 512 Dec 17 21:47 idraw ./JPsim/tools/JP/doc/CVS: total 1 -rwx------ 1 jsharko fac 0 Dec 17 22:09 Entries -rwx------ 1 jsharko fac 55 Dec 17 22:09 Repository ./JPsim/tools/JP/doc/idraw: total 200 drwx------ 2 jsharko fac 512 Dec 17 21:47 CVS -rwx------ 1 jsharko fac 66142 Dec 17 22:09 lcp_architecture_f93.idraw -rwx------ 1 jsharko fac 68369 Dec 17 22:09 lcp_architecture_f95.idraw -rwx------ 1 jsharko fac 68369 Dec 17 22:09 lcp_architecture_s95.idraw ./JPsim/tools/JP/doc/idraw/CVS: total 1 -rwx------ 1 jsharko fac 61 Dec 17 22:09 Repository ./JPsim/tools/JP/include: total 28 drwx------ 2 jsharko fac 512 Dec 17 21:47 CVS -rwx------ 1 jsharko fac 683 Dec 17 22:09 connectionpoint.h -rwx------ 1 jsharko fac 683 Dec 17 22:09 connectionpoint.h~ -rwx------ 1 jsharko fac 1459 Dec 17 22:09 juicetransfer.h -rwx------ 1 jsharko fac 1459 Dec 17 22:09 juicetransfer.h~ -rwx------ 1 jsharko fac 640 Dec 17 22:09 nodeonpath.h -rwx------ 1 jsharko fac 640 Dec 17 22:09 nodeonpath.h~ -rwx------ 1 jsharko fac 832 Dec 17 22:09 path.h -rwx------ 1 jsharko fac 832 Dec 17 22:09 path.h~ -rwx------ 1 jsharko fac 661 Dec 17 22:09 pipe.h -rwx------ 1 jsharko fac 661 Dec 17 22:09 pipe.h~ -rwx------ 1 jsharko fac 514 Dec 17 22:09 pipetee.h -rwx------ 1 jsharko fac 514 Dec 17 22:09 pipetee.h~ -rwx------ 1 jsharko fac 513 Dec 17 22:09 ppvalve.h -rwx------ 1 jsharko fac 513 Dec 17 22:09 ppvalve.h~ -rwx------ 1 jsharko fac 862 Dec 17 22:09 pump.h -rwx------ 1 jsharko fac 862 Dec 17 22:09 pump.h~ -rwx------ 1 jsharko fac 862 Dec 17 22:09 tank.h -rwx------ 1 jsharko fac 862 Dec 17 22:09 tank.h~ -rwx------ 1 jsharko fac 569 Dec 17 22:09 tivalve.h -rwx------ 1 jsharko fac 569 Dec 17 22:09 tivalve.h~ -rwx------ 1 jsharko fac 569 Dec 17 22:09 tovalve.h -rwx------ 1 jsharko fac 569 Dec 17 22:09 tovalve.h~ -rwx------ 1 jsharko fac 355 Dec 17 22:09 tramp.h -rwx------ 1 jsharko fac 800 Dec 17 22:09 valve.h -rwx------ 1 jsharko fac 800 Dec 17 22:09 valve.h~ ./JPsim/tools/JP/include/CVS: total 1 -rwx------ 1 jsharko fac 59 Dec 17 22:09 Repository ./JPsim/tools/JP/src: total 217 -rwx------ 1 jsharko fac 23406 Dec 17 22:09 Baaction.c -rwx------ 1 jsharko fac 3740 Dec 17 22:09 Basetup.c drwx------ 2 jsharko fac 512 Dec 17 21:48 CVS -rwx------ 1 jsharko fac 2767 Dec 17 22:09 Imakefile -rwx------ 1 jsharko fac 3311 Dec 17 22:09 Imakefile.templ -rwx------ 1 jsharko fac 42992 Dec 17 22:09 Jtaction.c -rwx------ 1 jsharko fac 11313 Dec 17 22:09 Jtsetup.c -rw------- 1 jsharko fac 42807 Dec 17 22:09 Makefile -rw------- 1 jsharko fac 42803 Dec 17 22:09 Makefile.bak -rwx------ 1 jsharko fac 11977 Dec 17 22:09 Tpaction.c -rwx------ 1 jsharko fac 4324 Dec 17 22:09 Tpsetup.c -rwx------ 1 jsharko fac 572 Dec 17 22:09 connectionpoint.c -rwx------ 1 jsharko fac 385 Dec 17 22:09 init_comp -rwx------ 1 jsharko fac 1327 Dec 17 22:09 init_comp.hlp -rwx------ 1 jsharko fac 91 Dec 17 22:09 jpbatch.c -rwx------ 1 jsharko fac 1074 Dec 17 22:09 jpbatch.vdf -rwx------ 1 jsharko fac 2241 Dec 17 22:09 juiceplant.c -rwx------ 1 jsharko fac 1825 Dec 17 22:09 juicetransfer.c -rwx------ 1 jsharko fac 532 Dec 17 22:09 nodeonpath.c -rwx------ 1 jsharko fac 641 Dec 17 22:09 path.c -rwx------ 1 jsharko fac 520 Dec 17 22:09 pipe.c -rwx------ 1 jsharko fac 421 Dec 17 22:09 pipetee.c -rwx------ 1 jsharko fac 420 Dec 17 22:09 ppvalve.c -rwx------ 1 jsharko fac 639 Dec 17 22:09 pump.c -rwx------ 1 jsharko fac 632 Dec 17 22:09 tank.c -rwx------ 1 jsharko fac 473 Dec 17 22:09 tivalve.c -rwx------ 1 jsharko fac 473 Dec 17 22:09 tovalve.c -rwx------ 1 jsharko fac 1184 Dec 17 22:09 upTempo.c -rwx------ 1 jsharko fac 2203 Dec 17 22:09 updateTemp.c -rwx------ 1 jsharko fac 600 Dec 17 22:09 valve.c ./JPsim/tools/JP/src/CVS: total 1 -rwx------ 1 jsharko fac 55 Dec 17 22:09 Repository ./JPsim/tools/JP/test: total 10 drwx------ 2 jsharko fac 512 Dec 17 21:48 CVS -rwx------ 1 jsharko fac 8722 Dec 17 22:09 jpbatch.dat ./JPsim/tools/JP/test/CVS: total 1 -rwx------ 1 jsharko fac 56 Dec 17 22:09 Repository ./JPsim/tools/OP: total 5 drwx------ 2 jsharko fac 512 Dec 17 21:48 CVS drwx------ 6 jsharko fac 512 Dec 17 21:48 doc drwx------ 3 jsharko fac 512 Dec 17 21:48 include drwx------ 4 jsharko fac 512 Dec 18 15:34 src drwx------ 3 jsharko fac 512 Dec 17 21:48 test ./JPsim/tools/OP/CVS: total 1 -rwx------ 1 jsharko fac 0 Dec 17 22:09 Entries -rwx------ 1 jsharko fac 51 Dec 17 22:09 Repository ./JPsim/tools/OP/doc: total 51 drwx------ 2 jsharko fac 512 Dec 17 21:48 93folc -rwx------ 1 jsharko fac 46765 Dec 17 22:09 94solcOPdoc.tex drwx------ 2 jsharko fac 512 Dec 17 21:48 CVS drwx------ 2 jsharko fac 1024 Dec 17 21:48 OPclassdocs -rwx------ 1 jsharko fac 524 Dec 17 22:09 aareadme drwx------ 3 jsharko fac 512 Dec 17 21:48 idraw ./JPsim/tools/OP/doc/93folc: total 0 ./JPsim/tools/OP/doc/CVS: total 1 -rwx------ 1 jsharko fac 55 Dec 17 22:09 Repository ./JPsim/tools/OP/doc/OPclassdocs: total 373 -rwx------ 1 jsharko fac 2302 Dec 17 22:09 OPclass.dat -rwx------ 1 jsharko fac 2475 Dec 17 22:09 OPclass.database -rwx------ 1 jsharko fac 23587 Dec 17 22:09 OPclassSM.idraw -rwx------ 1 jsharko fac 1736 Dec 17 22:09 OPclass_user_guide.aux -rwx------ 1 jsharko fac 1524 Dec 17 22:09 OPclass_user_guide.dlog -rwx------ 1 jsharko fac 27188 Dec 17 22:09 OPclass_user_guide.dvi -rwx------ 1 jsharko fac 355 Dec 17 22:09 OPclass_user_guide.lof -rwx------ 1 jsharko fac 4745 Dec 17 22:09 OPclass_user_guide.log -rwx------ 1 jsharko fac 218944 Dec 17 22:09 OPclass_user_guide.ps -rwx------ 1 jsharko fac 19683 Dec 17 22:09 OPclass_user_guide.tex -rwx------ 1 jsharko fac 713 Dec 17 22:09 OPclass_user_guide.toc -rwx------ 1 jsharko fac 169 Dec 17 22:09 aareadme -rwx------ 1 jsharko fac 3341 Dec 17 22:09 aareadme_build3 -rwx------ 1 jsharko fac 175 Dec 17 22:09 aareadme_idraw -rwx------ 1 jsharko fac 479 Dec 17 22:09 aareadme_userguide -rwx------ 1 jsharko fac 16708 Dec 17 22:09 eventdata2.idraw -rwx------ 1 jsharko fac 17740 Dec 17 22:09 statemodel2.idraw -rwx------ 1 jsharko fac 18858 Dec 17 22:09 statetranstable2.idraw ./JPsim/tools/OP/doc/idraw: total 350 drwx------ 2 jsharko fac 512 Dec 17 21:48 CVS -rwx------ 1 jsharko fac 27376 Dec 17 22:09 fig1.idraw -rwx------ 1 jsharko fac 16582 Dec 17 22:09 fig10.idraw -rwx------ 1 jsharko fac 14978 Dec 17 22:09 fig11.idraw -rwx------ 1 jsharko fac 18260 Dec 17 22:09 fig12.idraw -rwx------ 1 jsharko fac 16132 Dec 17 22:09 fig13.idraw -rwx------ 1 jsharko fac 23651 Dec 17 22:09 fig14.idraw -rwx------ 1 jsharko fac 18360 Dec 17 22:09 fig15.idraw -rwx------ 1 jsharko fac 22604 Dec 17 22:09 fig2.idraw -rwx------ 1 jsharko fac 21182 Dec 17 22:09 fig3.idraw -rwx------ 1 jsharko fac 20215 Dec 17 22:09 fig4.idraw -rwx------ 1 jsharko fac 29781 Dec 17 22:09 fig5.idraw -rwx------ 1 jsharko fac 16054 Dec 17 22:09 fig6.idraw -rwx------ 1 jsharko fac 13835 Dec 17 22:09 fig7.idraw -rwx------ 1 jsharko fac 29333 Dec 17 22:09 fig8.idraw -rwx------ 1 jsharko fac 62033 Dec 17 22:09 fig9.idraw ./JPsim/tools/OP/doc/idraw/CVS: total 1 -rwx------ 1 jsharko fac 61 Dec 17 22:09 Repository ./JPsim/tools/OP/include: total 1 drwx------ 2 jsharko fac 512 Dec 17 21:48 CVS ./JPsim/tools/OP/include/CVS: total 1 -rwx------ 1 jsharko fac 0 Dec 17 22:09 Entries -rwx------ 1 jsharko fac 59 Dec 17 22:09 Repository ./JPsim/tools/OP/src: total 316 drwx------ 2 jsharko fac 512 Dec 17 21:48 CVS -rwx------ 1 jsharko fac 1922 Dec 17 22:09 Imakefile -rwx------ 1 jsharko fac 1885 Dec 17 22:09 Imakefile.templ -rw------- 1 jsharko fac 42761 Dec 17 22:09 Makefile -rw------- 1 jsharko fac 42757 Dec 17 22:09 Makefile.bak -rwx------ 1 jsharko fac 38558 Dec 17 22:09 Opaction.c -rwx------ 1 jsharko fac 112250 Dec 17 22:09 Opaction.cpp -rwx------ 1 jsharko fac 54422 Dec 17 22:09 Opaction.ps -rwx------ 1 jsharko fac 4080 Dec 17 22:09 Opsetup.c -rwx------ 1 jsharko fac 8920 Dec 17 22:09 Opsetup.ps drwx------ 2 jsharko fac 512 Dec 17 21:48 asm -rwx------ 1 jsharko fac 385 Dec 17 22:09 init_comp ./JPsim/tools/OP/src/CVS: total 1 -rwx------ 1 jsharko fac 55 Dec 17 22:09 Repository ./JPsim/tools/OP/src/asm: total 0 ./JPsim/tools/OP/test: total 1 drwx------ 2 jsharko fac 512 Dec 17 21:48 CVS ./JPsim/tools/OP/test/CVS: total 1 -rwx------ 1 jsharko fac 0 Dec 17 22:09 Entries -rwx------ 1 jsharko fac 56 Dec 17 22:09 Repository ./JPsim/tools/TImer: total 5 drwx------ 2 jsharko fac 512 Dec 17 21:48 CVS drwx------ 4 jsharko fac 512 Dec 17 21:48 doc drwx------ 3 jsharko fac 512 Dec 17 21:48 include drwx------ 3 jsharko fac 512 Dec 18 15:34 src drwx------ 3 jsharko fac 512 Dec 17 21:48 test ./JPsim/tools/TImer/CVS: total 1 -rwx------ 1 jsharko fac 0 Dec 17 22:09 Entries -rwx------ 1 jsharko fac 54 Dec 17 22:09 Repository ./JPsim/tools/TImer/doc: total 80 -rwx------ 1 jsharko fac 74321 Dec 17 22:09 94solcTIdoc.tex -rwx------ 1 jsharko fac 4132 Dec 17 22:09 94solcTIdoc.toc drwx------ 2 jsharko fac 512 Dec 17 21:48 CVS drwx------ 3 jsharko fac 512 Dec 17 21:48 idraw ./JPsim/tools/TImer/doc/CVS: total 1 -rwx------ 1 jsharko fac 58 Dec 17 22:09 Repository ./JPsim/tools/TImer/doc/idraw: total 154 drwx------ 2 jsharko fac 512 Dec 17 21:48 CVS -rwx------ 1 jsharko fac 14887 Dec 17 22:09 fire.idraw -rwx------ 1 jsharko fac 18419 Dec 17 22:09 pseudo.idraw -rwx------ 1 jsharko fac 16470 Dec 17 22:09 reset.idraw -rwx------ 1 jsharko fac 16799 Dec 17 22:09 set.idraw -rwx------ 1 jsharko fac 19080 Dec 17 22:09 test.idraw -rwx------ 1 jsharko fac 17996 Dec 17 22:09 tick.idraw -rwx------ 1 jsharko fac 24315 Dec 17 22:09 timer.idraw -rwx------ 1 jsharko fac 25306 Dec 17 22:09 tree.idraw ./JPsim/tools/TImer/doc/idraw/CVS: total 1 -rwx------ 1 jsharko fac 64 Dec 17 22:09 Repository ./JPsim/tools/TImer/include: total 7 drwx------ 2 jsharko fac 512 Dec 17 21:48 CVS -rwx------ 1 jsharko fac 2095 Dec 17 22:09 timer.h -rwx------ 1 jsharko fac 2095 Dec 17 22:09 timer.h~ ./JPsim/tools/TImer/include/CVS: total 1 -rwx------ 1 jsharko fac 62 Dec 17 22:09 Repository ./JPsim/tools/TImer/src: total 108 drwx------ 2 jsharko fac 512 Dec 17 21:48 CVS -rwx------ 1 jsharko fac 1987 Dec 17 22:09 Imakefile -rwx------ 1 jsharko fac 1974 Dec 17 22:09 Imakefile.templ -rw------- 1 jsharko fac 42837 Dec 17 22:09 Makefile -rw------- 1 jsharko fac 42833 Dec 17 22:09 Makefile.bak -rwx------ 1 jsharko fac 8967 Dec 17 22:09 Tiaction.c -rwx------ 1 jsharko fac 2767 Dec 17 22:09 Tisetup.c -rwx------ 1 jsharko fac 385 Dec 17 22:09 init_comp -rwx------ 1 jsharko fac 5522 Dec 17 22:09 timer.c ./JPsim/tools/TImer/src/CVS: total 1 -rwx------ 1 jsharko fac 58 Dec 17 22:09 Repository ./JPsim/tools/TImer/test: total 1 drwx------ 2 jsharko fac 512 Dec 17 21:48 CVS ./JPsim/tools/TImer/test/CVS: total 1 -rwx------ 1 jsharko fac 0 Dec 17 22:09 Entries -rwx------ 1 jsharko fac 59 Dec 17 22:09 Repository ./JPsim/tools/executables: total 5 drwx------ 2 jsharko fac 512 Dec 17 21:48 CVS drwx------ 2 jsharko fac 512 Dec 17 21:48 alpha drwx------ 2 jsharko fac 512 Dec 17 21:48 decstation -rwx------ 1 jsharko fac 707 Dec 17 22:09 lcp drwx------ 2 jsharko fac 512 Dec 17 21:48 vax ./JPsim/tools/executables/CVS: total 1 -rwx------ 1 jsharko fac 0 Dec 17 22:09 Entries -rwx------ 1 jsharko fac 60 Dec 17 22:09 Repository ./JPsim/tools/executables/alpha: total 1 -rwx------ 1 jsharko fac 217 Dec 17 22:09 jptest.sh ./JPsim/tools/executables/decstation: total 1 -rwx------ 1 jsharko fac 70 Dec 17 22:09 jptest ./JPsim/tools/executables/vax: total 992 -rwx------ 1 jsharko fac 1004544 Dec 17 22:09 jptest ./JPsim/tools/include: total 253 drwx------ 2 jsharko fac 512 Dec 17 21:48 CVS -rwx------ 1 jsharko fac 913 Dec 17 22:09 define.h -rwx------ 1 jsharko fac 118 Dec 17 22:09 f950lc.c -rwx------ 1 jsharko fac 70558 Dec 17 22:09 f95olc.h -rwx------ 1 jsharko fac 69716 Dec 17 22:09 f95olc.h~ -rwx------ 1 jsharko fac 58527 Dec 17 22:09 jpbatch.h -rwx------ 1 jsharko fac 9633 Dec 17 22:09 mgf_letter.ps -rwx------ 1 jsharko fac 15846 Dec 17 22:09 olc3common.h -rwx------ 1 jsharko fac 27038 Dec 17 22:09 olc3common.h.ps drwx------ 2 jsharko fac 512 Dec 17 21:48 old ./JPsim/tools/include/CVS: total 1 -rwx------ 1 jsharko fac 56 Dec 17 22:09 Repository ./JPsim/tools/include/old: total 69 -rwx------ 1 jsharko fac 118 Dec 17 22:09 f93olc.c -rwx------ 1 jsharko fac 69361 Dec 17 22:09 f93olc.h ./JPsim/tools/lib: total 1 drwx------ 2 jsharko fac 512 Dec 17 21:48 CVS ./JPsim/tools/lib/CVS: total 1 -rwx------ 1 jsharko fac 0 Dec 17 22:09 Entries -rwx------ 1 jsharko fac 52 Dec 17 22:09 Repository ./JPsim/tools/olc: total 5 -rwx------ 1 jsharko fac 400 Dec 17 22:09 aareadme drwx------ 3 jsharko fac 512 Dec 17 21:48 doc drwx------ 2 jsharko fac 512 Dec 17 21:48 include drwx------ 2 jsharko fac 1024 Dec 18 15:34 src drwx------ 2 jsharko fac 512 Dec 17 21:48 test ./JPsim/tools/olc/doc: total 1 drwx------ 3 jsharko fac 512 Dec 17 21:48 idraw ./JPsim/tools/olc/doc/idraw: total 1 drwx------ 2 jsharko fac 512 Dec 17 21:48 CVS ./JPsim/tools/olc/doc/idraw/CVS: total 1 -rwx------ 1 jsharko fac 0 Dec 17 22:09 Entries -rwx------ 1 jsharko fac 62 Dec 17 22:09 Repository ./JPsim/tools/olc/include: total 100 -rwx------ 1 jsharko fac 37533 Dec 17 22:09 JPsim_includes.ps -rwx------ 1 jsharko fac 1865 Dec 17 22:09 activeclass.h -rwx------ 1 jsharko fac 1865 Dec 17 22:09 activeclass.h~ -rwx------ 1 jsharko fac 1563 Dec 17 22:09 activeinstance.h -rwx------ 1 jsharko fac 1563 Dec 17 22:09 activeinstance.h~ -rwx------ 1 jsharko fac 413 Dec 17 22:09 enable.h -rwx------ 1 jsharko fac 413 Dec 17 22:09 enable.h~ -rwx------ 1 jsharko fac 4224 Dec 17 22:09 eventinstance.h -rwx------ 1 jsharko fac 4224 Dec 17 22:09 eventinstance.h~ -rwx------ 1 jsharko fac 1173 Dec 17 22:09 eventtype.h -rwx------ 1 jsharko fac 1173 Dec 17 22:09 eventtype.h~ -rwx------ 1 jsharko fac 3272 Dec 17 22:09 lcp_main.h -rwx------ 1 jsharko fac 3270 Dec 17 22:09 lcp_main.h~ -rwx------ 1 jsharko fac 2238 Dec 17 22:09 processevent.h -rwx------ 1 jsharko fac 4517 Dec 17 22:09 state.h -rwx------ 1 jsharko fac 4517 Dec 17 22:09 state.h~ -rwx------ 1 jsharko fac 6053 Dec 17 22:09 statemodel.h -rwx------ 1 jsharko fac 6053 Dec 17 22:09 statemodel.h~ -rwx------ 1 jsharko fac 2076 Dec 17 22:09 transition.h -rwx------ 1 jsharko fac 2076 Dec 17 22:09 transition.h~ ./JPsim/tools/olc/src: total 147 -rwx------ 1 jsharko fac 3002 Dec 17 22:09 Imakefile -rwx------ 1 jsharko fac 3184 Dec 17 22:09 Imakefile.templ -rw------- 1 jsharko fac 43514 Dec 17 22:09 Makefile -rw------- 1 jsharko fac 43510 Dec 17 22:09 Makefile.bak -rwx------ 1 jsharko fac 4126 Dec 17 22:09 OLCUserCommands.c -rwx------ 1 jsharko fac 651 Dec 17 22:09 OLCappsetup.c -rwx------ 1 jsharko fac 1098 Dec 17 22:09 activeclass.c -rwx------ 1 jsharko fac 1916 Dec 17 22:09 activeinstance.c -rwx------ 1 jsharko fac 1083 Dec 17 22:09 enable.c -rwx------ 1 jsharko fac 6832 Dec 17 22:09 eventinstance.c -rwx------ 1 jsharko fac 1429 Dec 17 22:09 eventtype.c -rwx------ 1 jsharko fac 385 Dec 17 22:09 init_comp -rwx------ 1 jsharko fac 11270 Dec 17 22:09 lcp_main.c -rwx------ 1 jsharko fac 562 Dec 17 22:09 processOLCevents.c -rwx------ 1 jsharko fac 9036 Dec 17 22:09 processevent.c -rwx------ 1 jsharko fac 1581 Dec 17 22:09 state.c -rwx------ 1 jsharko fac 5190 Dec 17 22:09 statemodel.c -rwx------ 1 jsharko fac 1202 Dec 17 22:09 transition.c ./JPsim/tools/olc/test: total 0 ./JPsim/tools/olc.tk: total 6 drwx------ 2 jsharko fac 512 Dec 17 21:48 CVS drwx------ 3 jsharko fac 512 Dec 17 21:48 doc drwx------ 3 jsharko fac 512 Dec 17 21:48 idraw drwx------ 3 jsharko fac 512 Dec 17 21:48 include drwx------ 3 jsharko fac 512 Dec 17 21:48 src drwx------ 3 jsharko fac 512 Dec 17 21:48 test ./JPsim/tools/olc.tk/CVS: total 3 -rwx------ 1 jsharko fac 57 Dec 17 22:09 Entries -rwx------ 1 jsharko fac 52 Dec 17 22:09 Repository -rwx------ 1 jsharko fac 42 Dec 17 22:09 Root ./JPsim/tools/olc.tk/doc: total 1 drwx------ 2 jsharko fac 512 Dec 17 21:48 CVS ./JPsim/tools/olc.tk/doc/CVS: total 3 -rwx------ 1 jsharko fac 2 Dec 17 22:09 Entries -rwx------ 1 jsharko fac 56 Dec 17 22:09 Repository -rwx------ 1 jsharko fac 42 Dec 17 22:09 Root ./JPsim/tools/olc.tk/idraw: total 1 drwx------ 2 jsharko fac 512 Dec 17 21:48 CVS ./JPsim/tools/olc.tk/idraw/CVS: total 3 -rwx------ 1 jsharko fac 2 Dec 17 22:09 Entries -rwx------ 1 jsharko fac 58 Dec 17 22:09 Repository -rwx------ 1 jsharko fac 42 Dec 17 22:09 Root ./JPsim/tools/olc.tk/include: total 30 drwx------ 2 jsharko fac 512 Dec 17 21:48 CVS -rwx------ 1 jsharko fac 1865 Dec 17 22:09 activeclass.h -rwx------ 1 jsharko fac 1563 Dec 17 22:09 activeinstance.h -rwx------ 1 jsharko fac 413 Dec 17 22:09 enable.h -rwx------ 1 jsharko fac 4224 Dec 17 22:09 eventinstance.h -rwx------ 1 jsharko fac 1173 Dec 17 22:09 eventtype.h -rwx------ 1 jsharko fac 2238 Dec 17 22:09 processevent.h -rwx------ 1 jsharko fac 4517 Dec 17 22:09 state.h -rwx------ 1 jsharko fac 6053 Dec 17 22:09 statemodel.h -rwx------ 1 jsharko fac 2076 Dec 17 22:09 transition.h ./JPsim/tools/olc.tk/include/CVS: total 3 -rwx------ 1 jsharko fac 443 Dec 17 22:09 Entries -rwx------ 1 jsharko fac 60 Dec 17 22:09 Repository -rwx------ 1 jsharko fac 42 Dec 17 22:09 Root ./JPsim/tools/olc.tk/src: total 159 drwx------ 2 jsharko fac 512 Dec 17 21:48 CVS -rwx------ 1 jsharko fac 6985 Dec 17 22:09 Environ_update_JPsim.c -rwx------ 1 jsharko fac 3213 Dec 17 22:09 Imakefile -rwx------ 1 jsharko fac 3292 Dec 17 22:09 Imakefile.templ -rwx------ 1 jsharko fac 43705 Dec 17 22:09 Makefile -rwx------ 1 jsharko fac 43705 Dec 17 22:09 Makefile.bak -rwx------ 1 jsharko fac 4126 Dec 17 22:09 OLCUserCommands.c -rwx------ 1 jsharko fac 651 Dec 17 22:09 OLCappsetup.c -rwx------ 1 jsharko fac 1098 Dec 17 22:09 activeclass.c -rwx------ 1 jsharko fac 1916 Dec 17 22:09 activeinstance.c -rwx------ 1 jsharko fac 1083 Dec 17 22:09 enable.c -rwx------ 1 jsharko fac 6832 Dec 17 22:09 eventinstance.c -rwx------ 1 jsharko fac 1429 Dec 17 22:09 eventtype.c -rwx------ 1 jsharko fac 385 Dec 17 22:09 init_comp -rwx------ 1 jsharko fac 13856 Dec 17 22:09 lcp_main.c -rwx------ 1 jsharko fac 562 Dec 17 22:09 processOLCevents.c -rwx------ 1 jsharko fac 9688 Dec 17 22:09 processevent.c -rwx------ 1 jsharko fac 1581 Dec 17 22:09 state.c -rwx------ 1 jsharko fac 5190 Dec 17 22:09 statemodel.c -rwx------ 1 jsharko fac 1202 Dec 17 22:09 transition.c ./JPsim/tools/olc.tk/src/CVS: total 3 -rwx------ 1 jsharko fac 742 Dec 17 22:09 Entries -rwx------ 1 jsharko fac 56 Dec 17 22:09 Repository -rwx------ 1 jsharko fac 42 Dec 17 22:09 Root ./JPsim/tools/olc.tk/test: total 1 drwx------ 2 jsharko fac 512 Dec 17 21:48 CVS ./JPsim/tools/olc.tk/test/CVS: total 3 -rwx------ 1 jsharko fac 2 Dec 17 22:09 Entries -rwx------ 1 jsharko fac 57 Dec 17 22:09 Repository -rwx------ 1 jsharko fac 42 Dec 17 22:09 Root ./JPsim/tools/pr_util: total 651 drwx------ 2 jsharko fac 512 Dec 17 21:48 CVS -rwx------ 1 jsharko fac 2220 Dec 17 22:09 Imakefile -rw------- 1 jsharko fac 42804 Dec 17 22:09 Makefile -rw------- 1 jsharko fac 42800 Dec 17 22:09 Makefile.bak -rwx------ 1 jsharko fac 70558 Dec 17 22:09 f95olc.h -rwx------ 1 jsharko fac 69745 Dec 17 22:09 f95olc.h_orr -rwx------ 1 jsharko fac 58527 Dec 17 22:09 jpbatch.h drwx------ 2 jsharko fac 512 Dec 17 21:48 old -rwx------ 1 jsharko fac 22661 Dec 17 22:09 pr_delete.c -rwx------ 1 jsharko fac 21929 Dec 17 22:09 pr_dump.c -rwx------ 1 jsharko fac 2123 Dec 17 22:09 pr_free.c -rwx------ 1 jsharko fac 115501 Dec 17 22:09 pr_load.c -rwx------ 1 jsharko fac 93816 Dec 17 22:09 pr_log.c -rwx------ 1 jsharko fac 93822 Dec 17 22:09 pr_log.c~ -rwx------ 1 jsharko fac 5981 Dec 17 22:09 pr_stats.c ./JPsim/tools/pr_util/CVS: total 1 -rwx------ 1 jsharko fac 56 Dec 17 22:09 Repository ./JPsim/tools/pr_util/old: total 356 -rwx------ 1 jsharko fac 69361 Dec 17 22:09 f93olc.h -rwx------ 1 jsharko fac 69716 Dec 17 22:09 f95olc.h -rwx------ 1 jsharko fac 33 Dec 17 22:09 init_comp -rwx------ 1 jsharko fac 57685 Dec 17 22:09 jpbatch.h -rwx------ 1 jsharko fac 18307 Dec 17 22:09 pr_delete.c -rwx------ 1 jsharko fac 21929 Dec 17 22:09 pr_dump.c -rwx------ 1 jsharko fac 2112 Dec 17 22:09 pr_free.c -rwx------ 1 jsharko fac 99438 Dec 17 22:09 pr_load.c -rwx------ 1 jsharko fac 5981 Dec 17 22:09 pr_stats.c ./JPsim/tools/schema: total 275 drwx------ 2 jsharko fac 512 Dec 17 21:48 CVS -rwx------ 1 jsharko fac 16952 Dec 17 22:09 f93olc.sch -rwx------ 1 jsharko fac 3715 Dec 17 22:09 f93olcSModel.sch -rwx------ 1 jsharko fac 76903 Dec 17 22:09 f95olc.idraw -rwx------ 1 jsharko fac 19215 Dec 17 22:09 f95olc.sch -rwx------ 1 jsharko fac 77030 Dec 17 22:09 f95olcTBD.idraw -rwx------ 1 jsharko fac 19229 Dec 17 22:09 f95olcTBD.sch -rwx------ 1 jsharko fac 30574 Dec 17 22:09 f95olcTBD.sch.ps -rwx------ 1 jsharko fac 19439 Dec 17 22:09 f95olcTBD.tmp -rwx------ 1 jsharko fac 13366 Dec 17 22:09 jpbatch.sch ./JPsim/tools/schema/CVS: total 1 -rwx------ 1 jsharko fac 55 Dec 17 22:09 Repository ./JPsim/tools/test: total 2177 drwx------ 2 jsharko fac 512 Dec 17 21:48 CVS -rwx------ 1 jsharko fac 8722 Dec 17 22:09 jpbatch.dat -rwx------ 1 jsharko fac 1074 Dec 17 22:09 jpbatch.vdf -rwx------ 1 jsharko fac 1039360 Dec 17 22:09 jptest.exe.greg -rwx------ 1 jsharko fac 22048 Dec 17 22:09 jttest.dat -rwx------ 1 jsharko fac 23 Dec 17 22:09 jttest.script -rwx------ 1 jsharko fac 346 Dec 17 22:09 runolc -rwx------ 1 jsharko fac 346 Dec 17 22:09 runolc~ -rwx------ 1 jsharko fac 1114262 Dec 17 22:09 temp.dat.bak -rwx------ 1 jsharko fac 10943 Dec 17 22:09 test.dat -rwx------ 1 jsharko fac 215 Dec 17 22:09 test.script ./JPsim/tools/test/CVS: total 1 -rwx------ 1 jsharko fac 53 Dec 17 22:09 Repository ./JPsim/tools/tools: total 3 drwx------ 2 jsharko fac 512 Dec 17 21:48 CVS -rwx------ 1 jsharko fac 1622 Dec 17 22:09 makeawk ./JPsim/tools/tools/CVS: total 1 -rwx------ 1 jsharko fac 54 Dec 17 22:09 Repository =================================================== Appendix B. Build Log (jpsim_make_script) --------------------------------------------- Script started on Wed Dec 18 19:42:42 2002 sh-2.02$ make    xmkmf -a mv -f Makefile Makefile.bak imake -DUseInstalled -I/usr/lib/X11/config make Makefiles making Makefiles in pr_util... mv -f Makefile Makefile.bak Inconsistent rules lines for `all' making Makefiles in olc/src... mv -f Makefile Makefile.bak Inconsistent rules lines for `all' making Makefiles in OP/src... mv -f Makefile Makefile.bak Inconsistent rules lines for `all' making Makefiles in TImer/src... mv -f Makefile Makefile.bak Inconsistent rules lines for `all' making Makefiles in JP/src... mv -f Makefile Makefile.bak Inconsistent rules lines for `all' make includes including in ./pr_util... Inconsistent rules lines for `all' including in ./olc/src... Inconsistent rules lines for `all' including in ./OP/src... Inconsistent rules lines for `all' including in ./TImer/src... Inconsistent rules lines for `all' including in ./JP/src... Inconsistent rules lines for `all' make depend depending in ./pr_util... Inconsistent rules lines for `all' depending in ./olc/src... Inconsistent rules lines for `all' depending in ./OP/src... Inconsistent rules lines for `all' depending in ./TImer/src... Inconsistent rules lines for `all' depending in ./JP/src... Inconsistent rules lines for `all' sh-2.02$ make making all in ./pr_util... Inconsistent rules lines for `all' /usr/proj3/case/gen/ver_12/sjaganat/executables/alpha/chgen12 -log -ansi ../schema/jpbatch.sch Chgen V 12 by Sathya, report errors to Dr. Lechner: CHGEN Chgen V 12 - Sathya, released Tue Mar 05 23:00:00 GMT 2002, Copyright 2002, University of Mass - Lowell CHGEN-I-DEFAULTQUAL, Using default key size of 8 characters CHGEN-I-NONDEFAULTQUAL, Using non-default command-line qualifier -ansi CHGEN-I-NONDEFAULTQUAL, Using non-default command-line qualifier -log CHGEN-I-FORWARDREF, forward reference to table recipe (RC) found in table batch (BA) via foreign key field RCid CHGEN-I-FORWARDREF, forward reference to table tank (TK) found in table batch (BA) via foreign key field TKid CHGEN-I-FORWARDREF, forward reference to table timer (TI) found in table temp_ramp (TP) via foreign key field TIid CHGEN-I-FORWARDREF, forward reference to table tank (TK) found in table canning_oper (CO) via foreign key field TKid CHGEN-I-FORWARDREF, forward reference to table pipe_path (PA) found in table canning_oper (CO) via foreign key field PAid CHGEN-I-FORWARDREF, forward reference to table tank (TK) found in table storage_tank (RT) via foreign key field TKid CHGEN-I-FORWARDREF, forward reference to table tank (TK) found in table cooking_tank (CT) via foreign key field TKid CHGEN-I-FORWARDREF, forward reference to table tank (TK) found in table canning_tank (NT) via foreign key field TKid Processing Complete cp jpbatch.h ../include /usr/proj3/case/gen/ver_12/sjaganat/executables/alpha/chgen12 -log -ansi ../schema/f95olc.sch Chgen V 12 by Sathya, report errors to Dr. Lechner: CHGEN Chgen V 12 - Sathya, released Tue Mar 05 23:00:00 GMT 2002, Copyright 2002, University of Mass - Lowell CHGEN-I-DEFAULTQUAL, Using default key size of 8 characters CHGEN-I-NONDEFAULTQUAL, Using non-default command-line qualifier -ansi CHGEN-I-NONDEFAULTQUAL, Using non-default command-line qualifier -log CHGEN-I-FORWARDREF, forward reference to table recipe (RC) found in table batch (BA) via foreign key field RCid CHGEN-I-FORWARDREF, forward reference to table Timer (TI) found in table temp_ramp (TP) via foreign key field TIid [RJL Note 040109: The following compilation uses cc not gcc. Most COOL Makefiles are built using XWindows Imake (xmkmf -a , and use gcc and/or g++; bde's Imakefiles can also use cxx. TBD: Check out the gnu dependencies in Makefiles.] Processing Complete cp f95olc.h ../include cc -c -g -J -bswitch -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../include -DGENV12 -DGENLOG pr_dump.c cc: Info: pr_dump.c, line 423: In this statement, an array is being accessed outside the bounds specified for the array type. (subscrbounds) decode((char*)outkey[3], &EIcurr->ETid); -------------------------------------------------------------^ cc: Info: pr_dump.c, line 424: In this statement, an array is being accessed outside the bounds specified for the array type. (subscrbounds) PrintCheck(fprintf(hcg_dump_fp, " %-8s %-8s %-8s %-8s %8d %8d %8.4f %8.4f %-80s\n" ----------------------------------------^ cc: Info: pr_dump.c, line 523: In this statement, an array is being accessed outside the bounds specified for the array type. (subscrbounds) decode((char*)outkey[3], &PAcurr->TKid2); -------------------------------------------------------------^ cc: Info: pr_dump.c, line 524: In this statement, an array is being accessed outside the bounds specified for the array type. (subscrbounds) PrintCheck(fprintf(hcg_dump_fp, " %-8s %-8s %-8s %-8s %8d %-30s\n" ----------------------------------------^ cc: Info: pr_dump.c, line 576: In this statement, an array is being accessed outside the bounds specified for the array type. (subscrbounds) decode((char*)outkey[3], &COcurr->PAid); -------------------------------------------------------------^ cc: Info: pr_dump.c, line 577: In this statement, an array is being accessed outside the bounds specified for the array type. (subscrbounds) PrintCheck(fprintf(hcg_dump_fp, " %-8s %-8s %-8s %-8s %-10s %8.4f %-6s\n" ----------------------------------------^ cc: Info: pr_dump.c, line 645: In this statement, an array is being accessed outside the bounds specified for the array type. (subscrbounds) decode((char*)outkey[3], &TIcurr->AIid3); -------------------------------------------------------------^ cc: Info: pr_dump.c, line 647: In this statement, an array is being accessed outside the bounds specified for the array type. (subscrbounds) decode((char*)outkey[4], &TIcurr->ETid); -------------------------------------------------------------^ cc: Info: pr_dump.c, line 648: In this statement, an array is being accessed outside the bounds specified for the array type. (subscrbounds) PrintCheck(fprintf(hcg_dump_fp, " %-8s %-8s %-8s %-8s %-8s %8d\n" ----------------------------------------^ cc: Info: pr_dump.c, line 667: In this statement, an array is being accessed outside the bounds specified for the array type. (subscrbounds) decode((char*)outkey[3], &JTcurr->PAid); -------------------------------------------------------------^ cc: Info: pr_dump.c, line 668: In this statement, an array is being accessed outside the bounds specified for the array type. (subscrbounds) PrintCheck(fprintf(hcg_dump_fp, " %-8s %-8s %-8s %-8s %8.4f %8d\n" ----------------------------------------^ cc -c -g -J -bswitch -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../include -DGENV12 -DGENLOG pr_delete.c cc -c -g -J -bswitch -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../include -DGENV12 -DGENLOG pr_free.c cc -c -g -J -bswitch -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../include -DGENV12 -DGENLOG pr_load.c cc: Warning: pr_load.c, line 2112: In this statement, "AIcurr" of type "pointer to struct AI", is being converted to "pointer to struct JT". (cvtdiftypes) link_child_1(JT,AI,AIid,AIid,AIid,JTid); ------------------------^ cc: Warning: pr_load.c, line 2113: In this statement, "AIcurr" of type "pointer to struct AI", is being converted to "pointer to struct PA". (cvtdiftypes) link_child_1(PA,AI,AIid,AIid,AIid,PAid); ------------------------^ cc: Warning: pr_load.c, line 2114: In this statement, "AIcurr" of type "pointer to struct AI", is being converted to "pointer to struct VV". (cvtdiftypes) link_child_1(VV,AI,AIid,AIid,AIid,VVid); ------------------------^ cc: Warning: pr_load.c, line 2115: In this statement, "AIcurr" of type "pointer to struct AI", is being converted to "pointer to struct PM". (cvtdiftypes) link_child_1(PM,AI,AIid,AIid,AIid,PMid); ------------------------^ cc: Warning: pr_load.c, line 2155: In this statement, "CXcurr" of type "pointer to struct CX", is being converted to "pointer to struct VV". (cvtdiftypes) link_child_1(VV,CX,CXid,CXid,CXid,VVid); ------------------------^ cc: Warning: pr_load.c, line 2156: In this statement, "CXcurr" of type "pointer to struct CX", is being converted to "pointer to struct PT". (cvtdiftypes) link_child_1(PT,CX,CXid,CXid,CXid,PTid); ------------------------^ cc: Warning: pr_load.c, line 2157: In this statement, "CXcurr" of type "pointer to struct CX", is being converted to "pointer to struct PM". (cvtdiftypes) link_child_1(PM,CX,CXid,CXid,CXid,PMid); ------------------------^ cc: Warning: pr_load.c, line 2194: In this statement, "VVcurr" of type "pointer to struct VV", is being converted to "pointer to struct OV". (cvtdiftypes) link_child_1(OV,VV,VVid,VVid,VVid,OVid); ------------------------^ cc: Warning: pr_load.c, line 2195: In this statement, "VVcurr" of type "pointer to struct VV", is being converted to "pointer to struct IV". (cvtdiftypes) link_child_1(IV,VV,VVid,VVid,VVid,IVid); ------------------------^ cc: Warning: pr_load.c, line 2196: In this statement, "VVcurr" of type "pointer to struct VV", is being converted to "pointer to struct PV". (cvtdiftypes) link_child_1(PV,VV,VVid,VVid,VVid,PVid); ------------------------^ cc: Info: pr_load.c, line 2507: In this statement, an array is being accessed outside the bounds specified for the array type. (subscrbounds) decode(outkey[3], &EIcurr->ETid); --------------------------------------^ cc: Info: pr_load.c, line 2508: In this statement, an array is being accessed outside the bounds specified for the array type. (subscrbounds) PrintCheck(fprintf(hcg_logfileptr, " %-8s %-8s %-8s %-8s %8d %8d %8.4f %8.4f %-80s\n" ------------------------^ cc: Info: pr_load.c, line 2618: In this statement, an array is being accessed outside the bounds specified for the array type. (subscrbounds) decode(outkey[3], &PAcurr->TKid2); --------------------------------------^ cc: Info: pr_load.c, line 2619: In this statement, an array is being accessed outside the bounds specified for the array type. (subscrbounds) PrintCheck(fprintf(hcg_logfileptr, " %-8s %-8s %-8s %-8s %8d %-30s\n" ------------------------^ cc: Info: pr_load.c, line 2677: In this statement, an array is being accessed outside the bounds specified for the array type. (subscrbounds) decode(outkey[3], &COcurr->PAid); --------------------------------------^ cc: Info: pr_load.c, line 2678: In this statement, an array is being accessed outside the bounds specified for the array type. (subscrbounds) PrintCheck(fprintf(hcg_logfileptr, " %-8s %-8s %-8s %-8s %-10s %8.4f %-6s\n" ------------------------^ cc: Info: pr_load.c, line 2753: In this statement, an array is being accessed outside the bounds specified for the array type. (subscrbounds) decode(outkey[3], &TIcurr->AIid3); --------------------------------------^ cc: Info: pr_load.c, line 2755: In this statement, an array is being accessed outside the bounds specified for the array type. (subscrbounds) decode(outkey[4], &TIcurr->ETid); --------------------------------------^ cc: Info: pr_load.c, line 2756: In this statement, an array is being accessed outside the bounds specified for the array type. (subscrbounds) PrintCheck(fprintf(hcg_logfileptr, " %-8s %-8s %-8s %-8s %-8s %8d\n" ------------------------^ cc: Info: pr_load.c, line 2777: In this statement, an array is being accessed outside the bounds specified for the array type. (subscrbounds) decode(outkey[3], &JTcurr->PAid); --------------------------------------^ cc: Info: pr_load.c, line 2778: In this statement, an array is being accessed outside the bounds specified for the array type. (subscrbounds) PrintCheck(fprintf(hcg_logfileptr, " %-8s %-8s %-8s %-8s %8.4f %8d\n" ------------------------^ cc -c -g -J -bswitch -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../include -DGENV12 -DGENLOG pr_stats.c cc -c -g -J -bswitch -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../include -DGENV12 -DGENLOG pr_log.c ar -r pr_util.a pr_dump.o pr_delete.o pr_free.o pr_load.o pr_stats.o pr_log.o ar: Warning: creating pr_util.a ranlib pr_util.a if [ -d ../lib ]; then cp pr_util.a ../lib; fi making all in ./olc/src... Inconsistent rules lines for `all' cc -c -g -J -bswitch -D"GENV12" -DGENV12 -DGENLOG -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../pr_util/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include transition.c cc -c -g -J -bswitch -D"GENV12" -DGENV12 -DGENLOG -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../pr_util/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include statemodel.c cc -c -g -J -bswitch -D"GENV12" -DGENV12 -DGENLOG -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../pr_util/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include state.c cc -c -g -J -bswitch -D"GENV12" -DGENV12 -DGENLOG -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../pr_util/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include processevent.c cc: Warning: processevent.c, line 337: In this statement, this argument to printf is of "int" type and is not appropriate for the conversion specifier "%s". The value will be formatted in an unintended manner. (outstringtype) EventTypeGetLabel(ETid), -----------^ cc: Warning: processevent.c, line 338: In this statement, this argument to printf is of "int" type and is not appropriate for the conversion specifier "%s". The value will be formatted in an unintended manner. (outstringtype) EventTypeGetDescrip(ETid)); -----------^ cc -c -g -J -bswitch -D"GENV12" -DGENV12 -DGENLOG -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../pr_util/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include processOLCevents.c cc -c -g -J -bswitch -D"GENV12" -DGENV12 -DGENLOG -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../pr_util/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include eventtype.c cc -c -g -J -bswitch -D"GENV12" -DGENV12 -DGENLOG -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../pr_util/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include eventinstance.c cc -c -g -J -bswitch -D"GENV12" -DGENV12 -DGENLOG -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../pr_util/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include enable.c cc -c -g -J -bswitch -D"GENV12" -DGENV12 -DGENLOG -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../pr_util/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include activeinstance.c cc -c -g -J -bswitch -D"GENV12" -DGENV12 -DGENLOG -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../pr_util/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include activeclass.c cc -c -g -J -bswitch -D"GENV12" -DGENV12 -DGENLOG -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../pr_util/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include OLCappsetup.c cc -c -g -J -bswitch -D"GENV12" -DGENV12 -DGENLOG -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../pr_util/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include OLCUserCommands.c cc -c -g -J -bswitch -D"GENV12" -DGENV12 -DGENLOG -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../pr_util/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include lcp_main.c cc: Warning: ../../olc/include/lcp_main.h, line 89: Declaration has no type or storage class. (notypes) loop_stop = 'n'; ---------------^ cc: Warning: lcp_main.c, line 246: In this statement, the referenced type of the pointer value "catch_signal" is "function () returning pointer to void", which is not compatible with "function (int) returning void". (ptrmismatch) signal(SIGALRM, catch_signal); ------------------^ cc: Warning: lcp_main.c, line 299: Non-void function "catch_signal" does not contain a return statement. (missingreturn) FUNCTION( ^ ar -r olclib.a transition.o statemodel.o state.o processevent.o processOLCevents.o eventtype.o eventinstance.o enable.o activeinstance.o activeclass.o OLCappsetup.o OLCUserCommands.o lcp_main.o ar: Warning: creating olclib.a ranlib olclib.a if [ -d ../../lib ]; then cp olclib.a ../../lib; fi making all in ./OP/src... Inconsistent rules lines for `all' cc -c -g -J -bswitch -D"GENV12" -DGENV12 -DGENLOG -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include Opsetup.c cc -c -g -J -bswitch -D"GENV12" -DGENV12 -DGENLOG -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include Opaction.c making all in ./TImer/src... Inconsistent rules lines for `all' cc -c -g -J -bswitch -D"GENV12" -DGENV12 -DGENLOG -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include timer.c cc -c -g -J -bswitch -D"GENV12" -DGENV12 -DGENLOG -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include Tisetup.c cc -c -g -J -bswitch -D"GENV12" -DGENV12 -DGENLOG -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include Tiaction.c making all in ./JP/src... Inconsistent rules lines for `all' cc -g -J -bswitch -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include -D"GENV12" -DGENV12 -DGENLOG -c valve.c cc -g -J -bswitch -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include -D"GENV12" -DGENV12 -DGENLOG -c updateTemp.c cc -g -J -bswitch -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include -D"GENV12" -DGENV12 -DGENLOG -c upTempo.c cc -g -J -bswitch -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include -D"GENV12" -DGENV12 -DGENLOG -c tovalve.c cc -g -J -bswitch -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include -D"GENV12" -DGENV12 -DGENLOG -c tivalve.c cc -g -J -bswitch -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include -D"GENV12" -DGENV12 -DGENLOG -c tank.c cc -g -J -bswitch -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include -D"GENV12" -DGENV12 -DGENLOG -c pump.c cc -g -J -bswitch -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include -D"GENV12" -DGENV12 -DGENLOG -c ppvalve.c cc -g -J -bswitch -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include -D"GENV12" -DGENV12 -DGENLOG -c pipetee.c cc -g -J -bswitch -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include -D"GENV12" -DGENV12 -DGENLOG -c pipe.c cc -g -J -bswitch -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include -D"GENV12" -DGENV12 -DGENLOG -c path.c cc -g -J -bswitch -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include -D"GENV12" -DGENV12 -DGENLOG -c nodeonpath.c cc -g -J -bswitch -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include -D"GENV12" -DGENV12 -DGENLOG -c juicetransfer.c cc -g -J -bswitch -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include -D"GENV12" -DGENV12 -DGENLOG -c juiceplant.c cc: Info: juiceplant.c, line 33: Extraneous semicolon. (extrasemi) static PROTOTYPE(int ParseCommandLine, (int argc, char **argv)); ---------------------------------------------------------------^ cc -g -J -bswitch -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include -D"GENV12" -DGENV12 -DGENLOG -c connectionpoint.c cc -g -J -bswitch -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include -D"GENV12" -DGENV12 -DGENLOG -c Tpsetup.c cc -g -J -bswitch -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include -D"GENV12" -DGENV12 -DGENLOG -c Tpaction.c cc -g -J -bswitch -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include -D"GENV12" -DGENV12 -DGENLOG -c Jtsetup.c cc: Warning: Jtsetup.c, line 89: Non-void function "JTsetup" does not contain a return statement. (missingreturn) FUNCTION2( ^ cc: Warning: Jtsetup.c, line 418: In this statement, this argument to printf is of "int" type and is not appropriate for the conversion specifier "%s". The value will be formatted in an unintended manner. (outstringtype) printf(" Creating ActiveInstance %s.\n", PumpGetName(PMid)); ---------------------------------------------------^ cc: Warning: Jtsetup.c, line 419: In this statement, "PumpGetName(...)" of type "int", is being converted to "pointer to const char". (cvtdiftypes) AIid3 = ActiveInstanceCreate(PumpGetName(PMid), ACid3, "PumpOff"); -------------------------------------^ cc -g -J -bswitch -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include -D"GENV12" -DGENV12 -DGENLOG -c Jtaction.c cc: Warning: Jtaction.c, line 152: In this statement, the referenced type of the pointer value "ActiveInstanceGetName(...)" is const, but the referenced type of the target of this assignment is not. (notconstqual) BATCH_NAME = ActiveInstanceGetName(AIid1); ----^ cc: Warning: Jtaction.c, line 835: In this statement, this argument to printf is of "int" type and is not appropriate for the conversion specifier "%s". The value will be formatted in an unintended manner. (outstringtype) printf(" Pump name: %s\n", PumpGetName(PMid)); --------------------------------------------------^ cc: Warning: Jtaction.c, line 908: In this statement, this argument to printf is of "int" type and is not appropriate for the conversion specifier "%s". The value will be formatted in an unintended manner. (outstringtype) printf(" Pump name: %s\n", PumpGetName(PMid)); --------------------------------------------------^ cc: Warning: Jtaction.c, line 1404: In this statement, this argument to printf and conversion specifier "%f" combine integer and floating-point types. Behavior can be unpredictable. (outfloatint) PMkey, PumpGetCapacity(PMid)); -----------------------------------------^ cc -g -J -bswitch -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include -D"GENV12" -DGENV12 -DGENLOG -c Basetup.c cc -g -J -bswitch -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include -D"GENV12" -DGENV12 -DGENLOG -c Baaction.c cc -c ../../include/f95olc.c -g -J -bswitch -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include -D"GENV12" -DGENV12 -DGENLOG -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/TImer/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/JP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/OP/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/olc/include -I/usr/proj3/case/02f522/JPsimProj/jsharko/JPsim/JPsim/include cc -o jptest.exe valve.o updateTemp.o upTempo.o tovalve.o tivalve.o tank.o pump.o ppvalve.o pipetee.o pipe.o path.o nodeonpath.o juicetransfer.o juiceplant.o connectionpoint.o Tpsetup.o Tpaction.o Jtsetup.o Jtaction.o Basetup.o Baaction.o f95olc.o ../../OP/src/Opaction.o ../../OP/src/Opsetup.o ../../TImer/src/Tiaction.o ../../TImer/src/Tisetup.o ../../TImer/src/timer.o ../../lib/pr_util.a ../../lib/olclib.a ld: Unresolved: replay_log *** Exit 1 Stop. *** Exit 1 Stop. sh-2.02$ vbi  i  *** EDIT pr_log.c to remove replay_log() references *** sh: syntax error near unexpected token `replay_log()' sh-2.02$ make making all in ./pr_util... Inconsistent rules lines for `all' cc -c -g -J -bswitch -I../../TImer/include -I../../JP/include -I../../OP/include -I../../olc/include -I../../include -DGENV12 -DGENLOG pr_log.c ar -r pr_util.a pr_dump.o pr_delete.o pr_free.o pr_load.o pr_stats.o pr_log.o ranlib pr_util.a if [ -d ../lib ]; then cp pr_util.a ../lib; fi making all in ./olc/src... Inconsistent rules lines for `all' making all in ./OP/src... Inconsistent rules lines for `all' making all in ./TImer/src... Inconsistent rules lines for `all' making all in ./JP/src... Inconsistent rules lines for `all' cc -o jptest.exe valve.o updateTemp.o upTempo.o tovalve.o tivalve.o tank.o pump.o ppvalve.o pipetee.o pipe.o path.o nodeonpath.o juicetransfer.o juiceplant.o connectionpoint.o Tpsetup.o Tpaction.o Jtsetup.o Jtaction.o Basetup.o Baaction.o f95olc.o ../../OP/src/Opaction.o ../../OP/src/Opsetup.o ../../TImer/src/Tiaction.o ../../TImer/src/Tisetup.o ../../TImer/src/timer.o ../../lib/pr_util.a ../../lib/olclib.a cp jptest.exe ../../executables sh-2.02$ sh-2.02$ sh-2.02$ sh-2.02$ date Wed Dec 18 19:49:43 EST 2002 sh-2.02$ pwd /usr/proj3/case/02f522/JPsimProj/jsharko/JPsim sh-2.02$ sh-2.02$ exit script done on Wed Dec 18 19:50:01 2002