惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

F
Fortinet All Blogs
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
有赞技术团队
有赞技术团队
www.infosecurity-magazine.com
www.infosecurity-magazine.com
大猫的无限游戏
大猫的无限游戏
爱范儿
爱范儿
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
T
Threatpost
V
Visual Studio Blog
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - Franky
人人都是产品经理
人人都是产品经理
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
The Cloudflare Blog
N
News and Events Feed by Topic
L
Lohrmann on Cybersecurity
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
酷 壳 – CoolShell
酷 壳 – CoolShell
V
V2EX
AWS News Blog
AWS News Blog
S
SegmentFault 最新的问题
T
Tailwind CSS Blog
Hugging Face - Blog
Hugging Face - Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Spread Privacy
Spread Privacy
J
Java Code Geeks
博客园 - 聂微东
T
Tor Project blog
宝玉的分享
宝玉的分享
博客园 - 叶小钗
Webroot Blog
Webroot Blog
博客园 - 【当耐特】
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
H
Heimdal Security Blog
Y
Y Combinator Blog
T
The Blog of Author Tim Ferriss
MongoDB | Blog
MongoDB | Blog
I
InfoQ
Security Latest
Security Latest
Martin Fowler
Martin Fowler
Hacker News: Ask HN
Hacker News: Ask HN
P
Privacy International News Feed
C
CERT Recently Published Vulnerability Notes
Latest news
Latest news
雷峰网
雷峰网
D
Darknet – Hacking Tools, Hacker News & Cyber Security
C
Cisco Blogs
H
Help Net Security
L
LINUX DO - 最新话题
L
LINUX DO - 热门话题

Comments for IT Jungle

Present Timestamps in the Local Time Zone - IT Jungle Set Your Library List From A Job Description - IT Jungle GenAI Is The Death Of Deterministic Project Budgeting - IT Jungle Guru: Where’s The Table? - IT Jungle Big Blue Unveils Bob Premium Pack For IBM i - IT Jungle Guru: SQL Sequences In RPG Let Db2 Handle The Counting - IT Jungle DB2 for i 7.2 Features and Fun, Part 1 - IT Jungle Guru: DateTime Rules Of Thumb - IT Jungle Spring IBM i Tech Refreshes Will Come A Bit Later This Year - IT Jungle As I See It: The Surgical Years - IT Jungle After A Few Short Years, VS Code Passes Rational Developer for i - IT Jungle Guru: Managing The Lifecycle Of Your Service Programs – Updates Without Chaos - IT Jungle Where We Are And Where We Are Headed With AI On IBM i - IT Jungle And Then There Were Two: Big Blue Withdraws IBM i 7.4 - IT Jungle Guru: When Attention Turns To You – Writing Your Own ATTN Program - IT Jungle With Power11, Power Systems "Go To Eleven" - IT Jungle With Subscription Price, IBM i P20 And P30 Tiers Get Bigger Bundles - IT Jungle Guru: SQL and QTEMP - IT Jungle Guru: Ready or Not! Part 2 of Big Changes in RDi V9.6, Hover and Annotations - IT Jungle
Guru: Single Threading A Program Execution - IT Jungle
Chris Ringer · 2026-06-15 · via Comments for IT Jungle
  • June 15, 2026

    A paceline in cycling is a formation where all the cyclists ride in a single file line and the lead bike is pulling the group along as everyone else is drafting behind. Eventually the lead bike will drift to the side and to the back of the line, and the next bike will take the lead for the group.

    If a spirited cyclist leaves the paceline and goes alone, all the aerodynamic benefits of drafting are lost.

    Likewise, at my organization, we have a CL job that is submitted hourly throughout the day every day. Normally the submitted job completes before the next job submits. We never want two of these jobs running simultaneously (“leaving the paceline”). In small “mom and pop” shops, each job could be submitted to a new single threaded JOBQ or the existing JOBQ could be made single threaded. But in a larger company, perhaps beholden to SOX, JOBQ changes could require extensive regression testing.

    Object Locking

    Another method to prevent two CL programs from running simultaneously is to use object locking via the ALCOBJ command with an *EXCL (exclusive) lock. Only one job on the system may hold an exclusive lock on a given object.

    Years ago, my first impulse was to just lock the *PGM object itself but this simply doesn’t work. The IBM documentation explicitly states “When ALCOBJ is executed to get an EXCL lock on a program (*PGM), only the program object description is locked. The program code is not locked exclusively. Therefore, the program may still be run by another user.” So my preference is to create a permanent data area object (CRTDTAARA) with the same name as the CL program and then lock that data area. Run this command to create a data area:

    CRTDTAARA DTAARA(TESTLIB1/OEM001) TYPE(*CHAR) LEN(100)
    VALUE('OEM001 data area for ALCOBJ *EXCL locks')
    TEXT('OEM001 ALCOBJ *EXCL data area') AUT(*USE)
    

    The Wait Is Finally Over

    And let’s walk through a sample CL program to demonstrate this locking technique.

    01 OEM001: PGM
    02 DCL var(&wkGotLock) Type(*Lgl ) Len(1)   Value('0')
    03 DCL var(&wkDlySecs) Type(*Dec ) Len(5 0) Value(2)
    04 DCL var(&wkTotSecs) Type(*Dec ) Len(5 0) Value(0)
    05 DCL var(&wkMaxSecs) Type(*Dec ) Len(5 0) Value(30)
    06 DoUntil Cond(&wkGotLock)
    07    ALCOBJ OBJ((TESTLIB1/OEM001 *DTAARA *EXCL)) WAIT(0) SCOPE(*JOB)
    08    MONMSG  MSGID(CPF1002) EXEC(Do)  /* Cannot allocate object &1. */
    09       DLYJOB DLY(&wkDlySecs)
    10       ChgVar Var(&wkTotSecs) Value(&wkTotSecs + &wkDlySecs)
    11       If Cond(&wkTotSecs *GE &wkMaxSecs) Then(Do)
    12          SNDPGMMSG MSG('WARNING: Could not get object Lock, exiting!')
    13          Return
    14       EndDo
    15       Iterate
    16    EndDo
    17    ChgVar Var(&wkGotLock) Value('1')
    18 EndDo
    19 ALCOBJ  OBJ((TESTLIB1/OEM001 *DTAARA *SHRRD)) WAIT(0) SCOPE(*JOB)
    20 DLCOBJ  OBJ((TESTLIB1/OEM001 *DTAARA *EXCL)) SCOPE(*JOB)
    21 /* do business logic here ... */
    22 DLCOBJ  OBJ((TESTLIB1/OEM001 *DTAARA *SHRRD)) SCOPE(*JOB)
    23 EndPgm 
    

    Let’s walk through the code.

    Line 01: The start of the CL program.

    Line 02: A Boolean variable to indicate if we got the exclusive object lock.

    Lines 03 – 05: Variables for the delay seconds when cannot lock the object, total seconds delayed so far and maximum seconds to delay.

    Line 06: A DO Loop when attempting to lock the data area.

    Line 07: Attempt to get exclusive lock on the data area and try for 0 seconds (no delay).

    Line 08: Message ID CPF1002 is thrown when “Cannot allocate object “.

    Line 09: Delay the job two seconds. As an alternative you may wish to delay for a fraction of a second with usleep.

    Line 10: Calculate the total delayed seconds so far.

    Line 11: If the maximum wait seconds is reached, will exit the program (or whatever you want to do).

    Line 12: Write a helpful message to the job log.

    Line 13: Exit the program.

    Line 14: End of IF statement.

    Line 15: Loop again.

    Line 16: End of MONMSG.

    Line 17: Got the exclusive lock. Will cause DO loop to exit.

    Line 18: End of the DO loop.

    Line 19: Get a second lock on the same object, this time a “shared read” (source: Ernie Malaga circa early 1990s). This will allow other jobs (and users) to view the object attributes and the data area contents. Retaining an exclusive lock any longer than necessary feels a bit harsh to me. Other jobs (and users) are unable to see any of the object attributes when an exclusive lock is held (see figure below).

    Line 20: Release the *EXCL lock (but still hold the *SHRRD lock). For a batch job, this statement is not necessary since all locks are automatically released when the job ends.

    If you set a debug breakpoint on this statement and run command WRKOBJLCK TESTLIB1/OEM001 *DTAARA, you can see the two locks:

    Line 21: Do the core business logic here.

    Line 22: Release the *EXCL lock. Now the next job in line may attempt to get the *EXCL lock.

    Line 23: Exit the program.

    If you CALL the CL program in debug from two different sessions and step through, you can see how the two jobs deal with the exclusive object lock.

    Well, that’s it for now. I hope you’re able to apply this technique down the road. Thanks for reading my tech tip and until next time, keep coding!

    Chris Ringer began coding RPG programs in 1989, and after a recent unexpected but valuable detour to C# is happy to be back in the IBM world. In his spare time he enjoys cycling and running – and taking the family dog Eddie for walks.

    RELATED STORIES

    Guru: Decoding Base64 ASCII

    Guru: A Faster Way To Sign A JWT

    Guru: Web Concepts For The RPG Developer, Part 4

    Guru: Web Concepts For The RPG Developer, Part 3

    Guru: Web Concepts For The RPG Developer, Part 2

    Guru: Web Concepts For The RPG Developer, Part 1

    Guru: The PHP Path To Victory, Part 1

    PHP Crash Course For RPG Developers

    Installing PHP on Your Laptop

    Debugging Server Jobs In Green Screen

    Tags: Tags: , , , , , ,