|
rpg400-l-request@xxxxxxxxxxxx wrote: > 10. RE: Best way to check if a program is running (York, Albert) > >The only problem with this approach is that you cannot save the library >while the program is running, even if you use save while active, because you >can't get a lock on it. Well, actually, under many circumstances if not all, you _can_ save the library even with SAVLIB because you _can_ get a lock on it if the locks are set as needed. Consider the following example CLP named TSTALCPGM: ALCOBJ OBJ((TSTALCPGM *PGM *EXCL)) WAIT(0) monmsg ( cpf1002 ) exec( do ) SNDPGMMSG MSG('ALCOBJ *EXCL failed.') TOPGMQ(*EXT) return enddo ALCOBJ OBJ((TSTALCPGM *PGM *SHRRD)) WAIT(0) monmsg ( cpf1002 ) exec( do ) SNDPGMMSG MSG('ALCOBJ *SHRRD failed.') TOPGMQ(*EXT) return enddo DLCOBJ OBJ((TSTALCPGM *PGM *EXCL)) /* Do logical work here... */ dlyjob 30 DLCOBJ OBJ((TSTALCPGM *PGM *SHRRD)) The initial *EXCL lock is done to verify that no other locks exist. This *EXCL lock is extremely transient, essentially replaced immediately by the *SHRRD lock. Once the work is done -- or the job ends -- the remaining *SHRRD lock is gone. In the meantime, except for those milliseconds when *EXCL is held, there's no problem. Bonus thought... Further, since this example was based on OPM, the program associated space can be updated to hold the same info you'd store in the *dtaara, except you wouldn't be limited to 2k bytes. (I haven't had to find how to do similar with ILE.) Tom Liotta -- Tom Liotta The PowerTech Group, Inc. 19426 68th Avenue South Kent, WA 98032 Phone 253-872-7788 x313 Fax 253-872-7904 http://www.powertech.com __________________________________________________________________ McAfee VirusScan Online from the Netscape Network. Comprehensive protection for your entire computer. Get your free trial today! http://channels.netscape.com/ns/computing/mcafee/index.jsp?promo=393397 Get AOL Instant Messenger 5.1 free of charge. Download Now! http://aim.aol.com/aimnew/Aim/register.adp?promo=380455
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.