- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Status of system task on openvms
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-10-2005 06:55 AM
11-10-2005 06:55 AM
What does it mean the following tasks status in the openvms system:
HIB, COM, LEF
I need to start two tasks in order to start a particular system but when i check the tast status I see those task with an status of: LEF,
What does it mean?
Thanks in advance,
Ronni.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-10-2005 07:11 AM
11-10-2005 07:11 AM
SolutionCOM COMputable, ready to run as soon as CPU available
HIB HIBernating (compare SLEEP) waiting for "something" (maybe just a timer expiring) to re-awaken it
LEF LocalEventFlagwait waiting for some external event (usually, but not exclusively) an interrupt by a periferal device (a keyboard key hit, an IO request satisfied..)
Hth,
Proost.
Have one on me.
jpe
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-10-2005 07:11 AM
11-10-2005 07:11 AM
Re: Status of system task on openvms
COM = computable - the process is waiting to be scheduled on a CPU
LEF = local event flag wait - can be many things - you would have to dive into the process' control structures to find out what the process is waiting for (e.g. the process could be at the command prompt waiting for user input)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-10-2005 07:28 AM
11-10-2005 07:28 AM
Re: Status of system task on openvms
Thanks a lot for helping me.
Regards,
Ronni.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-10-2005 07:43 AM
11-10-2005 07:43 AM
Re: Status of system task on openvms
some more states ;o)
CEF (Common event flag wait)
COLPG (Collided page wait)
COM (Computable)
COMO (Computable but outswapped)
CUR (Current)
FPG (Free page wait)
HIB (Hibernating)
HIBO (Hibernating and outswapped)
LEF (Local event flag wait)
LEFO (Local event flag wait and outswapped)
MUTEX 1 (Miscellaneous wait)
PFW (Page fault wait)
PSXFR (POSIX fork wait)
RWAST (AST wait)
RWBRK (Waiting for BROADCAST to finish) RWCAP (CPU capability required)
RWCLU (Cluster transition wait)
RWCSV (Cluster server)
RWIMG (Image activation lock)
RWLCK (Lock ID database)
RWMBX (Mailbox full)
RWMPB (Modified page writer busy)
RWMPE (Modified page list empty)
RWNPG (Nonpaged pool)
RWPAG (Paged pool)
RWPFF (Page file full)
RWQUO (Pooled quota)
RWSCS (SCS wait)
RWSWP (Swapfile spacelist empty)
SUSP (Suspended)
SUSPO (Suspended and outswapped)
Mike
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-10-2005 08:39 PM
11-10-2005 08:39 PM
Re: Status of system task on openvms
ANAL/SYS
SDA> SHOW PROCESS/ID=pid
and look for 'Waiting EF Cluster' and 'event flag wait mask' (you may need to press return for more). The event flag wait mask has a bit clear for each flag for which the process is waiting. The Waiting EF Cluster tells you which set of 32 event flags.
You may find this useful
ftp://ftp.process.com/vms-freeware/fileserv/pwait_sda.zip
Determining what is going to set the event flag is the problem as it may be any system service that can set an event flag. Its often an I/O request (look for busy channels in SHOW PROC/CHAN) or a lock request (look at locks with SHOW LOCK/WAITING).
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2005 01:19 AM
11-22-2005 01:19 AM
Re: Status of system task on openvms
Thanks a lot for helping me with it.
Your comments are really helpfull.
Regards,
Ronni.